如何利用CSS实现各种几何图形形状效果_html/css_WEB-ITnose
1个回答
展开全部
如何利用CSS实现各种几何图形形状效果:建议:尽可能的手写代码,可以有效的提高学习效率和深度。大家都知道CSS具有强大的功能,能够让页面变得美观靓丽,随着CSS的版本的提高,功能也越来越强大,下面简单介绍一下如何使用CSS实现各种几何图形效果。一.实现正方形:
蚂蚁部落.mytest{ width:100px; height:100px; background-color:green;}
二.实现矩形:
蚂蚁部落.mytest{ width:150px; height:100px; background-color:green;}
三.实现圆形:IE8和IE8以下的浏览器不支持。
蚂蚁部落.mytest{ width:100px; height:100px; background:green; -moz-border-radius:50px; -webkit-border-radius:50px; border-radius:50px;}
四.实现椭圆形:IE8和IE8以下的浏览器不支持。
蚂蚁部落.mytest{ width:200px; height:100px; background:green; -moz-border-radius:100px / 50px; -webkit-border-radius:100px / 50px; border-radius:100px / 50px;}
五.实现三角形:以下代码可以根据实际需要设置其他方向的角北京色为白色,就可以实现某一方向为三角形。
蚂蚁部落.mytest{ width:0px; height:0px; border-left:100px solid green; border-right:100px solid black; border-bottom:100px solid red; border-top:100px solid blue;}
六.平行四边形:IE8和IE8以下的浏览器不支持。
蚂蚁部落.mytest{ width:150px; height:100px; margin-left:20px; -webkit-transform: skew(20deg); -moz-transform: skew(20deg); -o-transform: skew(20deg); background:green;}
七.鸡蛋形状:IE8和IE8以下的浏览器不支持。
蚂蚁部落.mytest{ display:block; width:126px; height:180px; background-color:green; -webkit-border-radius: 63px 63px 63px 63px / 108px 108px 72px 72px; border-radius:50% 50% 50% 50% / 60% 60% 40% 40%;}
八.提示框:
蚂蚁部落.parent{ width:300px; height:100px; margin:40px auto; background-color:green; position:relative;}.square{ width:0px; height:0px; border-bottom:10px solid white; border-left:10px solid white; border-right:10px solid green; border-top:10px solid green; position:absolute; left:-20px; top:10px;}
原文地址是:http://www.51texiao.cn/div_cssjiaocheng/2015/0503/591.html
最原始地址是:http://www.softwhy.com/
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询