<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box1 {
width: 0;
height: 0;
/* 以下两句为兼容低版本浏览器 */
line-height: 0;
font-size: 0;
/* 其余三角设置为透明 */
border: 10px solid transparent;
border-left-color: pink;
margin: 100px auto;
}
</style>
</head>
<body>
<div class="box1"></div>
</body>
</html>
12-13
11-26
07-25
384