Searched quite a lot, couldn't find anything - am I really the only one?
How do I turn
<div class="form-group">
<label for="input1" >Username</label>
<input type="text" class="form-control" id="input1" value="boern">
</div>
Into this (where the label is inline / on the border / stroke):
Aren't there any prefined boostrap scss tricks or classes that I can used without messing myself with the css like so (the less CSS I write, the better):
<div class="form-group">
<label for="input1" style="margin-left: 12px; margin-left: 15px;
margin-top: -12px; position: absolute;
background-color: white; border: 2px solid white;">
Username
</label>
<input type="text" style="height: 3.3rem;" class="form-control" id="input1" value="boern">
</div>
Thanks!



