Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个字段集,其中有一些输入字段和一个复选框。我有一个问题,我想在复选框旁边直接有一个图例。我让它在这个链接上可见:
http://jsfiddle.net/uUtmU/
我工作并尝试使用padding-bottomand margin-bottom,但没有任何成功。
padding-bottom
margin-bottom
如果有人可以帮助我,我真的很感激。非常感谢。
嘿,现在像这样输入 vertical-align: top;
vertical-align: top;
#split input[type="checkbox"] { vertical-align: top; width: 10px; }
你可以绝对定位术语文本并设置一个边距顶部以将其向下推一点,我通过添加发现
.tandc { position:absolute; margin-top:2px; }
希望能帮助到你