乐趣区

CSS 画三角形

<!DOCTYPE html>
<html>
<head>
<meta charset=”utf-8″>
<title></title>
<style>
.triangle {
border: 50px solid red;
width: 0px;
height: 0px;
border-top-color: transparent;
border-left-color: transparent;
border-right-color: transparent;
}
</style>
</head>
<body>
<div class=”triangle”>

</div>
</body>
</html>

退出移动版