tags:

views:

26

answers:

1

Hi,

A picture says more than a thousand words?

screenshot

I would like the second (and consecutive) lines to be aligned with the first. Any ideas?

Html is

<input><span>text</span>
+1  A: 
.thing input { float: left; }
.thing label { display: block; margin-left: 2em; }

<div class="thing">
    <input type="radio" id="potato"/>
    <label for="potato">Text over multiple lines should be aligned properly...</label>
</div>
bobince