我无法弄明白为什么css转换:rotate()不起作用。 这是代码:http://jsbin.com/afayan/1/edit 当我将背景颜色添加到“内容”类时,转换不起作用...
答案 0 :(得分:0)
答案 1 :(得分:0)
这是关于z索引的。试试这个:
.content { padding:50px; background: green; z-index: 5; }
.box { background:#ccc; padding:50px; position:relative;}
.box:after { content:''; width:100%; height:100%; left:0; top:0;
background:red; position:absolute; z-index:4;
-moz-transform: rotate(2deg); transform: rotate(2deg);
-webkit-transform: rotate(2deg); }