您的位置:首页 > Web前端 > CSS

小三角的css画法(两种)

2016-09-08 17:48 344 查看
第一种:
<!doctype html>
<html>
<head>
<style>
div{
width:0;
height:0;
border-left:5px solid transparent;
border-right:5px solid transparent;
border-bottom:10px solid #10456b;
dispaly:inline-block;
}
</style>
</head>
<body>
<div></div>
<div></div>
<div></div>
</body>
</html>
效果图:

另外一种:

<!doctype html>
<html>
<head>
<style>
div{
background:#000000;
border-style:solid;
border-color:transparent  #fff transparent transparent;
border-width:20px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>

效果图:
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: