Answers for "css element rotating"

CSS
10

rotate element css

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

.rotated {
  transform: rotate(45deg); /* Equal to rotateZ(45deg) */
  background-color: pink;
}
Posted by: Guest on April-29-2020

Code answers related to "css element rotating"

Browse Popular Code Answers by Language