css3三角形怎么写

1. 如何用CSS写一个三角形 1.可以用css3的border-radius属性来实现,支持ie9+
<div class="dm">
</div>
<div class="dm1">
</div>
<div class="dm2">
</div>
<div class="dm3">
</div>
<div class="dm4">
</div>
<div class="dm5">
</div>
<div class="dm6">
</div>
<div class="dm7">
</div>
<style>
.dm {
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 100px solid #00897B;
}
.dm1{
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-top: 100px solid #00897B;margin-top: 20px;
}
.dm2{
width: 0;
height: 0;
border-top: 50px solid transparent;
border-right: 100px solid #00897B;
border-bottom: 50px solid transparent;margin-top: 20px;
}
.dm3{
width: 0;
height: 0;
border-top: 50px solid transparent;
border-left: 100px solid #00897B;
border-bottom: 50px solid transparent;margin-top: 20px;
}
.dm4{
width: 0;
height: 0;
border-top: 100px solid #00897B;
border-right: 100px solid transparent;margin-top: 20px;
}
.dm5{
width: 0;
height: 0;
border-top: 100px solid #00897B;
border-left: 100px solid transparent; margin-top: 20px;
}
.dm6{
width: 0;
height: 0;
border-bottom: 100px solid #00897B;
border-right: 100px solid transparent
}
.dm7{
width: 0;
height: 0;
border-bottom: 100px solid #00897B;
border-left: 100px solid transparent;
}
</style>
2. 怎么利用CSS3绘制三角形 1、新建一个html5网页,名称为index.html,在<body>;代码中写上四个div,分别是向上、向下、向左,向右四个三角形,代码如下:
<div class="triangle-up"> <;!--向上的三角--> </div>
<div class="triangle-down"> <;!--向下的三角--> </div>
<div class="triangle-left"> <;!--向左的三角--> </div>
<div class="triangle-right"> <;!--向右的三角--> </div>
2、然后新建一个css文件style.css,并在index.html中引入,引入代码:<link rel="stylesheet" type="text/css" href="http://www.xuexi88.com/zhishi/style.css">
3、先做向上的三角形,这里有两种写法,大家可以参考下 。在css文件中输入以下代码:
第一种: .triangle-up {
width:0;
height:0;
border-left:30px solid transparent;
border-right:30px solid transparent;
border-bottom:30px solid #fff;
}
第二种:.triangle-up {
width:0;
height:0;
border:30px solid transparent;
border-bottom-color:#fff;
}
4、接下来写向下的三角形,继续在css文件中输入以下代码:
.triangle-down {
width:0;
height:0;
border-left:20px solid transparent;
border-right:20px solid transparent;
border-top:20px solid #0066cc;
}
5、然后是向左的三角形,代码为:
.triangle-left {
width:0;
height:0;
border-top:30px solid transparent;
border-bottom:30px solid transparent;
border-right:30px solid yellow;
}
6、最后是向右的三角形,代码为:
.triangle-right {
width:0;
height:0;
border-top:50px solid transparent;
border-bottom: 50px solid transparent;
border-left: 50px solid green;
}
3. 如何用css3绘制有边框的三角形 如果是一个正方形,我们写边时,会用到border,但我们这里讨论的三角形本身就是border,不可能再给border添加border属性,所以我们需要用到其他办法 。