-1

我无法弄清楚为什么 css transform: rotate() 不起作用。这是代码: http: //jsbin.com/afayan/1/edit 当我将背景颜色添加到“内容”类时,转换不起作用......

4

2 回答 2

0

您必须为这两个内容添加正确的 z-index。或者删除 z-index。

更新:

代码

于 2012-12-01T11:37:47.077 回答
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); }
于 2012-12-01T11:38:21.720 回答