I have an input[type="radio"]
element inside a block container of fixed width. The supporting text for the input
element does not fit in a single line, and falls over to two or more lines. For example:
<div class="leftBlock">
<input type="radio" name="foo" value="bar" id="option" />
This is a rather long supporting text that does not fit in
one line.
</div>
div.leftBlock {
position:relative;
float:left;
width:275px;
}
How would I be able to style the input
element (or its text) such that every other line the text falls to starts at the same indent level the first line does? The first line of text has to be at the same vertical level as the input
element.
Any help will be much appreciated.