复选框以标签为中心
有人可以帮我将复选框置于其标签的中心吗?对于下面的代码,复选框位于顶部。
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不知道这是否是正确的方法,但我这样处理这个问题:
http://jsfiddle.net/AgKpQ /
使用类似的解决方案时,您必须记住 clearfix。
I don't know if it's the proper way but I handle this problem like that:
http://jsfiddle.net/AgKpQ/
When using similar solutions you'll have to remember about the clearfix.
输入{vertical-align:bottom;} 你想要什么吗?如果不是,垂直对齐的另一个有效值可能会。
Does input{vertical-align:bottom;} what you want? If not maybe another of the valid values for vertical-align might.