html,css写一个三角形

"Hello World, Hello Blog"

Posted by wudimingwo on December 15, 2018

版本1.0 利用border属性

html

1
<div class="box"> </div>

css

1
2
3
4
5
6
.box{
        width: 0;
        height: 0;
        border: 100px solid transparent;
        border-left:100px solid red;
}