Alignment of mulitple labels - HTML, CSS -
i having problem aligning labels.
what have right now:
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:
you need set fixed width , float left property each label. @ snippet: http://www.bootply.com/weqbl8tvo0
regards
Comments
Post a Comment