绘制三角形,梯形
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style>
body{
margin: 100px;
}
.span1{
display: inline-block;
border-left: 60px solid darkorange;
border-top: 50px solid transparent;
border-bottom: 50px solid transparent;
/*<!--transparent使border透明,只保留挤压效果-->*/
width: 0px;
height: 0px;
}
.span2{
display: inline-block;
border-left: 50px solid darkorange;
border-top: 50px solid orange;
border-bottom: 50px solid fuchsia;
border-right: 50px solid green;
width: 0px;
height: 0px;
}
.span3{
background-color: blue;
display: inline-block;
border-left: 50px solid darkorange;
border-top: 50px solid orange;
border-bottom: 50px solid fuchsia;
border-right: 50px solid green;
width: 40px;
height: 40px;
}
</style>
</head>
<body>
<span class="span1">
</span>
<span class="span2">
</span>
<span class="span3">
</span>
</body>
</html>
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。