純 CSS 建立各種不同的圖形形狀

2015-11-08    分類:WEB開發、程式設計開發、首頁精華5人評論發表於2015-11-08

本文由碼農網 – 小峰原創翻譯,轉載請看清文末的轉載要求,歡迎參與我們的付費投稿計劃

介紹

今天,我們要學習如何使用簡單的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能讓你完成很多令人驚豔的事情…祝大家編碼愉快!

譯文連結:http://www.codeceo.com/article/pure-css-create-shapes.html
英文原文:How to create different shapes in html using css
翻譯作者:碼農網 – 小峰
轉載必須在正文中標註並保留原文連結、譯文連結和譯者等資訊。]

相關文章