CSS繪製各種幾何形狀

Jasonccj發表於2019-02-16

Github地址:github.com/Jasonccj/cs…
掘金地址:juejin.im/post/5c6837…
慕課地址:www.imooc.com/article/278…

正方形

.square {
    width: 100px;
    height: 100px;
    background-color: green;
}
複製程式碼
CSS繪製各種幾何形狀

長方形

.rectangle {
    width: 200px;
    height: 100px;
    background-color: green;
}
複製程式碼
CSS繪製各種幾何形狀

銳角三角形

.triangle-acute {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid green; 
}
複製程式碼
CSS繪製各種幾何形狀

直角三角形

.triangle-right {
    width: 0;
    height: 0;
    border-left: 50px solid green;
    border-right: 50px solid transparent;
    border-top: 50px solid transparent;
    border-bottom: 50px solid green; 
}
複製程式碼
CSS繪製各種幾何形狀

平行四邊形

.rhomboid {
    width: 200px;
    height: 100px;
    margin-left: 30px;
    background-color: green;
    transform: skewX(30deg)
}
複製程式碼
CSS繪製各種幾何形狀

梯形

.trapezoid {
    width: 100px;
    height: 0;
    border-bottom: 100px solid green;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
}
複製程式碼
CSS繪製各種幾何形狀

圓形

.circle {
    width: 100px;
    height: 100px;
    background-color: green;
    border-radius: 50%;
}
複製程式碼
CSS繪製各種幾何形狀

其他圖形後續不斷更新中!

最後

  • 喜歡的記得點個star.鼓勵一下,謝謝!
  • 微信 cuixianseni
  • qq群號 424072183
CSS繪製各種幾何形狀

相關文章