I am trying to make two circles appear side by side (responsive).
HTML
<div class="col-sm-12">
<div class="circle col-sm-6">450 reviews</div>
<div class="circle col-sm-6">4.2 million readers</div>
</div>
CSS
.circle{
width:100px;
height:100px;
border-radius:100px;
font-size:20px;
color:#fef;
line-height:100px;
text-align:center;
background:#000
}
But with this CSS, the circles are below each other.
Inside the circle, is it also possible to have "450" in one line and "reviews" below it. Similarly "4.2 million" in one line and "readers" in another?