我想旋轉一個div在另一個div內。我的代碼有什麼問題。我遇到了另一種方法(:在孩子之前),但這種方法有什麼問題?由於在CSS中的轉換屬性問題
body {
background: #ccc
}
.box {
width: 70%;
height: 200px;
background: #FFF;
margin: 40px auto;
}
.effect2 {
position: relative;
}
.box1 {
transform: rotate3d;
position: absolute;
width: 20%;
height: 20px;
background-color: aqua;
}
<div class="box effect2">
<div class="box1"></div>
</div>
您沒有規定的旋轉值。 –
http://www.w3.org/Talks/2012/0416-CSS-WWW2012/Demos/transforms/demo-rotate3d.html – DaniP
http://stackoverflow.com/questions/15207351/rotate3d-shorthand –