Reference the source provided, specifically the red alert option. Here is an example:
<div class="alert alert-dismissible alert-danger">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong>Oh snap!</strong> <a href="#" class="alert-link">Change a few things up</a> and try submitting again.
</div>
In the given example, there is a line break after try. Is this due to width constraints?
The modified version:
<div class="alert alert-dismissable alert-danger" style="float:right;">
<button type="button" class="close" data-dissmiss="alert">×</button>
<strong>Leave blank if there is already a Record for today! This will auto-calculate based on the previous Record.</strong>
</div>
My version does not have any line breaks but I haven't made any CSS adjustments. Would it be possible to insert a line break within the <strong>
tag inline? I attempted a method from here, but it seems that only works for <textarea>
's.
Your assistance is greatly appreciated.