久久久久久99久久久|中文字慕人成字幕二区|中文在线不卡高清理论av|最新国产激情无码在线|亚洲五月天堂蜜臀在线观看|中国无码三级片在线观看

css繪制特殊圖形基礎(chǔ)

2016/10/14 8:31:13   閱讀:1649    發(fā)布者:1649

1.等腰三角形

.isosceles{ 
    width: 0; 
    height: 0; 
    border:30px solid; 
    border-left-color: transparent; 
    border-right-color: transparent; 
    border-top-color: transparent; 
    border-bottom-color: red; 
}

2.直角三角形

.right{ 
    width: 0; 
    height: 0; 
    border:30px solid; 
    border-left: 0; 
    border-right-color: transparent; 
    border-top: 0; 
    border-bottom-color: red; 
}

3.圓

.round{ 
    width: 100px; 
    height: 100px; 
    background-color: red; 
    border-radius:50%;    
}

4.橢圓

.ellipse{ 
    width: 100px; 
    height: 80px; 
    background-color: red; 
    border-radius:50%;    
}