用css3旋转写平行四边形
今天要布局的网页背景是一个平行四边形,切图作为背景不好,很影响网页的打开速度,,那么这个平行四边形就css代码写出来,可以用css3的CSS3 transform 旋转的属性写出来,就是transform:skew,全是css代码写的可好了,大爱css3。
先看下效果:
代码如下:
<!Doctype html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gbk2312"/> <title>用css3旋转写平行四边形</title> <style type="text/css"> .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; } </style> </head> <body> <div class="box"> <div class="skew"><div class="skew-main">用css3旋转写平行四边形</div></div> </div> </body> </html>
除注明外的文章,均为来源:老汤博客,转载请保留本文地址!
原文地址:https://tangjiusheng.cn/css3/123.html
原文地址:https://tangjiusheng.cn/css3/123.html