私は画像の下円を丸く丸くしない方法は?
のような丸い円をやりたい。しかし、私は内側の丸いものを作るのトラブルにしています!私はborder-top-style & border-right-style
と一緒に試みましたが、まだ同じものを手に入れていません。
.circle {
border-radius:50%;
width:100px;
height:100px;
background:#A2D36E;
text-align:center; }
.bar {
top:15px;
left:15px;
border-radius:50%;
border:1px solid white;
border-width:3px;
border-top-style:none;
border-right-style:none;
width:80px;
height:80px;
position:absolute;
}
span {
top:30%;
transform:translateY(-30%);
position:relative;
font-size:1.6rem;
color:#fff;
font-weight:bold;
}
<div class='circle'>
<div class='bar'> </div>
<span>8.8</span>
</div>
は申し訳ありませんが、私は古い質問キャッシュヘッダをクリアすることを忘れ! –