Is it possible to align the label on top and select at the bottom within the given HTML structure as shown in the picture?
<div class="col">
<label for="foo">Select:</label>
<select id="foo" name="select">
<option value="1">1</option>
<option value="2">2</option>
</select>
</div>
<div class="col">
<label for="bar">Select any of the following:</label>
<select id="bar" name="select">
<option value="11">11</option>
<option value="22">22</option>
</select>
</div>
I have managed to align the label to the top and select to the bottom when in two separate div blocks using vertical-align property. However, I am curious to know if there is a way to achieve this without modifying the existing HTML code.