Alignment of mulitple labels - HTML, CSS -


i having problem aligning labels.

what have right now:

enter image description here

html:

<div class="personalinformation"> <label for="" class="info">firstname:</label> <label for="">bill</label> </div>  <div class="personalinformation"> <label for="" class="info">lastname:</label> <label for="">gates</label> </div>  <div class="personalinformation"> <label for="" class="info">country:</label> <label for="">france</label> </div> 

css:

.personalinformation { text-align: center; margin-left: auto; text-justify: inter-word; margin: 0 auto 1em auto; }  .info { font-weight: bold; text-align: left; margin-right: 50px; } 

how labels align this:

enter image description here

you need set fixed width , float left property each label. @ snippet: http://www.bootply.com/weqbl8tvo0

regards


Comments

Popular posts from this blog

cookies - Yii2 Advanced - Share session between frontend and mainsite (duplicate of frontend for www) -

angular - password and confirm password field validation angular2 reactive forms -

php - Permission denied. Laravel linux server -