这里圆的半径是多大
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
.baguatu{
position: absolute;
margin: auto;
padding: 0px;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 192px;
height: 96px;
/* background: red; */ /* 这里background默认为transparent的 */
border-style: solid;
border-color: black;
border-width: 2px 2px 96px 2px;
border-radius:50%;
}
/* .baguatu::before{
content: "";
position: absolute;
top: 50%;/* 50%意思是父元素高度height的一半 */
/* right: 0px;
width: 24px;
height: 24px;
background-color: white;
border: 36px solid black;
border-radius: 50%;
} */
</style>
</head>
<body>
<div class="baguatu"></div>
</body>
</html>
之前提问过,已经了解border-radius是根据父元素的实际占据面积来计算的,那么这里实际宽高好像不一样,圆的半径究竟多少呢,还是这里把宽度为2px的boder的宽忽略不计了呢?
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星