I have bootply here - http://www.bootply.com/XLGE6Vpjov
I need 3 circles centered in the containers, and then I need the text inside to be horizontally and vertically.
How can I center the text vertically?
I know that the border radius will not work in IE8, but I do not mind that it be a square.
<div class="container"> <div class="row"> <div class="col-md-4 block text-center"> <p class="circle">Some Text here Some text here Some text here Some text here</p> </div> <div class="col-md-4 block"> <p class="circle">Some Text here</p> </div> <div class="col-md-4 block"> <p class="circle">Some More Text here</p> </div> </div> </div> .block{ border: 1px solid red; text-align: center; vertical-align: middle; } .circle{ background: red; border-radius: 200px; color: white; height: 200px; font-weight: bold; width: 200px; }
source share