📜  在 css 代码示例中旋转图像

📅  最后修改于: 2022-03-11 14:47:27.408000             🧑  作者: Mango

代码示例2
div {
  width: 80px;
  height: 80px;
  background-color: skyblue;
}

.rotated {
  transform: rotate(45deg); /* Equal to rotateZ(45deg) */
  background-color: pink;
}