html – 对齐复选框标签(网页)

前端之家收集整理的这篇文章主要介绍了html – 对齐复选框标签(网页)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
一张图片说千言万语?

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

Html

<input><span>text</span>

解决方法

.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>
原文链接:https://www.f2er.com/html/227744.html

猜你在找的HTML相关文章