首页 > 代码库 > 画三角形

画三角形

<!DOCTYPE html>
<html>
<head>
<style>
.triangle {
width : 0;
height: 0;
border : 100px solid transparent;
border-top : 100px solid blue; /*这里可以设置border的top、bottom、left、right四个方向的三角*/
}
</style>
</head>
<body>
<div class="triangle"></div>
</body>
</html>

 

 

<style>.triangle { width: 0; height: 0; border: 100px solid transparent; border-top: 100px solid blue }</style>
 

画三角形