I am working with Bootstrap version 2.3.2 and I have a specific layout in mind that I would like to implement. Here is what I have so far:
My goal is to right-align the "Edit notes" button with the label "Notes." How can I modify the code below to achieve this?
<div class="control-group">
<div class="row-fluid">
<div><label for="Notes" class="control-label" style="text-align:left">Notes</label></div>
<div><button class='btn btn-small editNotes globalNotes' src='' title='Edit notes'><i class="icon-edit"></i> Edit</button></div>
</div>
<div style="clear:both;">
<div class="thumbnail clearfix" style="width:455px; height: 190px; overflow: auto">
<span id="notesPanel"><pre id="notesTxt" style="border:none; background: none; display:inline;">new</pre></span>
</div>
</div>
</div>