通过简单的css代码可实现漂亮的三角形
<style>
div{
margin: 50px auto;
width: 0px;
height: 0px;
background-color: transparent;
border: 100px solid ;
border-left-color: transparent;
border-top-color: transparent;
border-right-color: gray;
border-bottom-color: transparent;
}
</style>
</head>
<body>
<div></div>
</body>
效果图
当然你也可以在此基础上实现其他样式
<style>
div{
margin: 50px auto;
width: 10px;
height: 10px;
background-color: transparent;
border: 100px solid ;
border-left-color: transparent;
border-top-color: transparent;
border-right-color: gray;
border-bottom-color: darkslategray;
}
</style>
</head>
<body>
<div></div>
</body>
效果图
装载请表明出处