将复选框与标签对齐
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将复选框与标签对齐相关的知识,希望对你有一定的参考价值。
Aligning a label with a checkbox can be tricky. Here is the html and CSS I used to achieve it.
<!-- The HTML --> <div class="checkbox-label"><input type="checkbox" /><span>Remember me</span></div> // The CSS .checkbox-label { display: inline; font-size: 12px; padding-left: 5px; } .checkbox-label span { padding-left: 5px; padding-bottom: 15px; vertical-align: bottom; line-height: 22px; }
以上是关于将复选框与标签对齐的主要内容,如果未能解决你的问题,请参考以下文章