CSS转换:rotate()根据图像的长宽比旋转图像吗?

时间:2019-03-13 19:01:08

标签: css

我已将这项任务作为评估的一部分... ““旋转”按钮应翻转项目的长宽比。”

为此,我将元素作为目标并切换了类名(旋转),然后添加了此CSS ...

.main-inner.rotate {
  transform: rotate(90deg)
}

这有效,但是,我想知道这是否适用于长宽比吗?

谢谢!

1 个答案:

答案 0 :(得分:3)

div.a {
  width: 150px;
  height: 80px;
  background-color: yellow;

  transform: rotate(90deg);
}
<h1>The transform Property</h1>

<h2>transform: rotate(90deg):</h2>
<div class="a">Hello World!</div>
<br>

是的,因为此轮换功能是由专业开发人员开发的,所以它必须完成轮换等相关任务