您的位置:首页 > Web前端 > CSS

纯 CSS 创建各种不同的图形形状

2015-11-10 00:00 826 查看


 介绍

  今天,我们要学习如何使用简单的CSS来创建不同类型的平面图形。


 使用代码

  矩形




.rectangle {
    width: 250px;
    height: 150px;
    background-color: #6DC75F;
}

<div></div>


  三角形




.triangleUp {
            border-left: 75px solid transparent;
            border-right: 75px solid transparent;
            border-bottom: 150px solid  #6DC75F;
            width: 0;
            height: 0;
        }

<div class="triangleUp"></div>


  椭圆形




.oval {
    width: 300px;
    height: 150px;
    background: #6DC75F;
    -moz-border-radius: 150px / 75px;
    -webkit-border-radius: 150px / 75px;
    border-radius: 150px / 75px;
}

<div class="oval"></div>


  月牙形




.moon {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  box-shadow: 15px 15px 0 0 green;
}

<div class="moon"></div>


  树叶




.leaf {
    border-radius: 5px 300px 3px 300px;
    background: #6DC75F;
    width: 150px;
    height: 150px;
}

<div class="leaf"></div>


 兴趣点

  CSS能让你完成很多令人惊艳的事情…祝大家编码愉快!

  原文:How to create different shapes in html using css 译文:codeceo
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: