circle
by jshacker
HTML
<div id="circle"></div>
CSS
div {
height: 200px;
width: 200px;
background-color: red;
}
#circle {
border-radius: 50%;
}
by jshacker
<div id="circle"></div>
div {
height: 200px;
width: 200px;
background-color: red;
}
#circle {
border-radius: 50%;
}