对齐复选框标签(网页)

Ber*_*van 8 html css

一张图片说千言万语?

截图

我希望第二行(和连续行)与第一行对齐.有任何想法吗?

Html是

<input><span>text</span>
Run Code Online (Sandbox Code Playgroud)

bob*_*nce 13

.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>
Run Code Online (Sandbox Code Playgroud)