純css繪制三角形
效果图1:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
div {
width: 0;/*去掉width,效果让人意外*/
border: 30px solid transparent;/*把边框颜色设为透明*/
border-bottom: 30px solid red;/*下边的*/
border-top: 30px solid blue;/*上边的*/
border-right: 30px solid yellow;/*右边的*/
border-left: 30px green solid;/*左边的*/
}
</style>
</head>
<body>
<div></div>
</body>
</html>點擊查看更多內容
為 TA 點贊
評論
評論
共同學習,寫下你的評論
評論加載中...
作者其他優質文章
正在加載中
感謝您的支持,我會繼續努力的~
掃碼打賞,你說多少就多少
贊賞金額會直接到老師賬戶
支付方式
打開微信掃一掃,即可進行掃碼打賞哦

