Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

transform css

div {
  width: 80px;
  height: 80px;
  background-color: skyblue;
}

.rotated {
  transform: rotate(45deg); /* Equal to rotateZ(45deg) */
  background-color: pink;
}
Source by developer.mozilla.org #
 
PREVIOUS NEXT
Tagged: #transform #css
ADD COMMENT
Topic
Name
5+3 =