How to create a circle using Pure CSS?
Originally Published Here ๐!
You can create a circle using pure CSS. ๐ฅ
TL;DR
/* Make a Circle in pure CSS */
.circle {
width: 100px;
height: 100px;
background: red;
border-radius: 50%;
}
If you want a clearer explanation read on. ๐
First,...
melvingeorge-me.hashnode.dev2 min read