I'm looking get this code:
<form id="first_name">
<div class="form-group">
<label>First name</label>
<input type="text" class="form-control input-lg" />
</div>
</form>
To look like this
minus the colors, checkbox, value, etc. Essentially I want it to look just like a legend tag does in a field set but without either tags and the label inside the border of the text input. Thanks in advance!
background-color
of the page the same as thebackground-color
of the input? You could likely just assign the samebackground-color
to the<label>
and make use ofdisplay: block;
and negative margins. – Ciao