<!DOCTYPE html>
<html>
<head>
<style>
.circle {
width: 100px;
height: 100px;
border-radius: 50%;
background-color: red;
}
.triangle {
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 100px solid blue;
}
</style>
</head>
<body>
<!--圆-->
<div class="circle"></div>
<!--三角形-->
<div class="triangle"></div>
</body>
</html>
html圆和三角形
于 2024-03-27 12:00:23 首次发布