1.效果展示
<!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>
*{
margin: 0;
padding: 0;
}
#box{
width: 0;
height: 0;
border: 100px solid;
border-top-color: rebeccapurple;
border-right-color:transparent ;
border-left-color: transparent;
border-bottom-color: transparent;
}
</style>
</head>
<body>
<div id="box"></div>
</body>
</html>
2.效果展示
<!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>
*{
margin: 0;
padding: 0;
}
#box{
width: 0;
height: 0;
border: 100px solid;
border-top-color: rebeccapurple;
border-right-color:transparent ;
border-left-color: rebeccapurple;
border-bottom-color: transparent;
}
</style>
</head>
<body>
<div id="box"></div>
</body>
</html>
主要思想:边框足够宽,盒子足够小