Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I want css for half filled circle with round border.

enter image description here

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
609 views
Welcome To Ask or Share your Answers For Others

1 Answer

This is how you can achieve it in CSS.

.wrapper{
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 3px solid black;
  overflow: hidden;
}

.one{
  display: inline-block;
  background-color: green;
  height: 100px; width:50px;
  border-right: 2px solid black;
}

.two{
  display: inline-block;
  background-color: white;
  height: 100px; width:50px;
}
<div class="wrapper">
<div class="one"></div>
<div class="two"></div>
</div>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...