html - Div Not Responding to Width CSS -
in process of creating form, , want text labels same width. reason cannot discern, using width
not working in:
.form-label { display:inline; width: 160px; } <div class="form-label required">first name:</div>
how can .form-label
class respond width declaration? thank you!
change display:inline display:inline-block.
Comments
Post a Comment