用css3旋转写平行四边形

今天要布局的网页背景是一个平行四边形,切图作为背景不好,很影响网页的打开速度,,那么这个平行四边形就css代码写出来,可以用css3的CSS3 transform 旋转的属性写出来,就是transform:skew,全是css代码写的可好了,大爱css3。

先看下效果:

用css3旋转写平行四边形

代码如下:




    
    用css3旋转写平行四边形
    
        .box{width:1200px;margin:100px auto;}
        .skew{width:1000px;height:734px;background:#f0eb4f;margin:0 auto;color:#000;
            font-size:20px;line-height:500px;text-align:center;transform: skew(-15deg);}
        .skew-main{transform: skew(15deg);}
        .box02 {
            width: 0;
            height: 0;
            border-top: 100px solid #f44261;
            border-right: 100px solid transparent;
        }
    



    用css3旋转写平行四边形