复选框以标签为中心

发布于 2024-12-09 01:04:14 字数 181 浏览 0 评论 0原文

有人可以帮我将复选框置于其标签的中心吗?对于下面的代码,复选框位于顶部。

<label for="checkbox">Label</label>
<input name="checkbox" type="checkbox" />

感谢您的帮助!

Can somebody help me to center the check box to his label? With the code below the check box is at the top.

<label for="checkbox">Label</label>
<input name="checkbox" type="checkbox" />

Thanks for your help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

莳間冲淡了誓言ζ 2024-12-16 01:04:14

我不知道这是否是正确的方法,但我这样处理这个问题:

http://jsfiddle.net/AgKpQ /

label, input {
    float: left;
    display: block;
}
label {
    font-size: 30px;
}
input {
    margin-top: 10px;
}

使用类似的解决方案时,您必须记住 clearfix

I don't know if it's the proper way but I handle this problem like that:

http://jsfiddle.net/AgKpQ/

label, input {
    float: left;
    display: block;
}
label {
    font-size: 30px;
}
input {
    margin-top: 10px;
}

When using similar solutions you'll have to remember about the clearfix.

陌伤浅笑 2024-12-16 01:04:14

输入{vertical-align:bottom;} 你想要什么吗?如果不是,垂直对齐的另一个有效值可能会。

Does input{vertical-align:bottom;} what you want? If not maybe another of the valid values for vertical-align might.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文