半圆


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<title></title>
<style>
.box {
width: 160px;
height: 160px;
border-radius: 50%;
border: 2px solid transparent;
border-top: 2px solid red;
border-right: 2px solid red;
transform: rotate(-45deg);
}
</style>
</head>

<body>
<div class="box">
</div>
</body>

</html>