CSS 画三角形

3次阅读

共计 273 个字符,预计需要花费 1 分钟才能阅读完成。

<!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>

正文完
 0