c# .net Adsense ADO.NET Linq Viruses/security asp.net MVC JQuery Angular-js Node-js SEO Java C++ SQL API Networking vb.net .Net Css JavaScript Generics c#.Net entity framework HTML Website host Website Construction Guide HTTP tutorial W3C tutorial Web Services JSON Psychology Ionic framework Angular ReactJS Python Computer Android
Css

Circular in css

| | Css , Html

In this article i will show you how to create a circle with pure CSS.

HTML CODE:

<div class="circle"></div>

CSS CODE:

.circle {
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    background: #333;
}

DEMOSTRATION: