I have the following html
<div class="form-group " id="new_change_form_title">
    <label class="pull-left" for="change_title">Title</label>
    <div dir="auto" class=" pull-left explanation">A short sentence that describe what this is about</div>
    <input class="" dir="auto" id="change_title" name="change[title]" required="required" size="30" type="text" />
</div>
I'd like .explanation to be aligned at the bottom as opposed to the result of aligned to top
as seen in http://jsfiddle.net/xQwB5/1/
Changing line-height does help, but if the explanation is long, on small screen it causes problems...
is there a way to align .explanation to be closer to input (changing the structure to reach the result is ok)
 
     
    