如何使用CSS来创建平面图形代码
更新:HHH   时间:2023-1-7


小编给大家分享一下如何使用CSS来创建平面图形代码,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!

1.矩形

.rectangle {

width: 250px;

height: 150px;

background-color: #6DC75F;

}

2.三角形

.triangleUp {

border-left: 75px solid transparent;

border-right: 75px solid transparent;

border-bottom: 150px solid #6DC75F;

width: 0;

height: 0;

}

3.椭圆形

.oval {

width: 300px;

height: 150px;

background: #6DC75F;

-moz-border-radius: 150px / 75px;

-webkit-border-radius: 150px / 75px;

border-radius: 150px / 75px;

}

4.月牙形

.moon {

width: 150px;

height: 150px;

border-radius: 50%;

box-shadow: 15px 15px 0 0 green;

}

5.树叶

.leaf {

border-radius: 5px 300px 3px 300px;

background: #6DC75F;

width: 150px;

height: 150px;

}

以上是“如何使用CSS来创建平面图形代码”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注天达云行业资讯频道!

返回web开发教程...