<!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>
.triangle { width: 0; height: 0; border: 100px solid transparent; border-top: 100px solid blue }
时间: 2024-12-17 08:56:30