I have three div elements having the same styles.the content inside the div is dynamic as you can see below
Current
how to make the text center inside each div like below
Expected
.sample{
padding:15px;
width:150px;
height:70px;
float: left;
color:#fff;
background-color:#3498db;
margin-bottom:20px;
text-align:left;
text-align:center;
line-height:normal;
margin-right:10px;
}
<div class="sample"> Some text </div>
<div class="sample"> A little more text is added </div>
<div class="sample"> This text is large compared to other sample divs </div>