I have circle with text:
.circle {
width: 30px;
height: 30px;
background: #eee;
border-radius: 50%;
text-align: center;
line-height: 30px;
display: inline-block;
margin-right: 10px;
}
<div class="circle">0</div>
<div class="circle">100</div>
<div class="circle">10000</div>
In this example, when number is big, circle is not responsive. How I can do circles responsive with width: 30px
and height: 30px
? I need only these sizes for circles.