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

php - Permission denied. Laravel linux server -

google bigquery - Delta between query execution time and Java query call to finish -

python - Pandas two dataframes multiplication? -