I am using below css to display some content in the boxes. I am unable to bring the text in center of the box. text-align:center
doesn't seem to be working. Also tried line-height: 30px;
but it adds space between lines. I need this to be at central.
Is there any property I can set to make text in center of the box?
.sideBarList li {
width: 100px;
height: 60px;
margin: 0;
text-align: center;
line-height: 30px;
border-radius: 10px;
background: pink;
margin: 0 10px 100px 30px;
display: inline-block;
vertical-align: top;
color: black;
position: relative;
text-align: center;
font-family: Arial;
font-size: 11px;
}
<ul class="sideBarList">
<li class="li">CDE RTR</li>
<li class="li">ABC</li>
<li class="li"> TYTYT YTYYT IIIOO TYTYYTYY RTRTRTR</li>
</ul>