In bootstrap 2, what is the recommended way to line up labels and text fields in a read-only form. The following code example creates inconsistent fields:
<form class="form-horizontal"> <fieldset> <legend>Sample</legend> <div class="control-group"> <label class="control-label">Readonly Field</label> <div class="controls"> Lorem Ipsum and then some </div> </div> </fieldset> </form>
Please note that I can fix this myself using special CSS. It's not a problem. It just seems silly to me that this is not built in, so I feel that I have to ignore something.
twitter-bootstrap twitter-bootstrap-2
batkuip Mar 27 '12 at 10:08 2012-03-27 10:08
source share