+ 2
How many ways do we have to draw half circle?
draw half of a circle without background and has border in css3 i remember a way with border-top-left but not complete
8 ответов
+ 4
I think this is more better :
https://code.sololearn.com/WiAVm8u2TA8v/?ref=app
+ 3
i figured out :
.half-circle {
width: 200px;
height: 100px; /* as the half of the width */
background-color: gold;
border-top-left-radius: 110px; /* 100px of height + 10px of border */
border-top-right-radius: 110px; /* 100px of height + 10px of border */
border: 10px solid gray;
border-bottom: 0;
}
+ 2
I need an Semicircular
+ 2
https://code.sololearn.com/WMagORgDF5yO/?ref=app
+ 1
Easiest way i can come up with
https://code.sololearn.com/WtaTiuse2zIb/?ref=app
+ 1
https://code.sololearn.com/W46bG0SBiZlJ/?ref=app
0
sorry i should've tested that first lol