CSS:div如何寫出一個三角形(triangle)

(方法1)將div的寬和高設爲0,css

設置div的border寬度(若等,爲一個四個三角形組成的正方形),而後將其中三邊的border設置爲透明transparent  spa

(方法2)將在元素的後面加一個僞類 內容爲 code

content:’’;
display:block;
width:0;height:0;	
border-width:5px;border-style:solid;
 border-color: transparent transparent transparent #fff;
相關文章
相關標籤/搜索