单选框和复选框与文本垂直对齐_html/css_WEB-ITnose
程序员文章站
2022-05-18 09:33:57
...
现在的网站一般字体大小都是 12px,在 12px 下单选框和复选框与文本垂直居中对不齐,解决方法有很多,今天我整理了下最常用的 3 种方法。
html 结构:
radio-and-checkbox-and-text-vertical-align 单选框
复选框
scss:
@charset "utf-8";@import "core/config";@import "core/reset";.demo { margin:50px; font-size:12px; font-family:SimSun; h2 { font-size:20px; } p { margin:20px; input { margin-right:5px; } .input1 { height:13px; margin-top:0; vertical-align:text-top; } .input2 { margin-top:-2px; vertical-align:middle; } .input3 { vertical-align:-3px; } }}
效果如图所示:
测试浏览器:chrome,firefox,ie7-10
参考资料: 复选框单选框与文字对齐问题的研究与解决
推荐阅读
-
自学篇之js 提取复选框和单选框的值 和纯css的3D按钮_html/css_WEB-ITnose
-
css基准线研究:垂直对齐的实现-好的、差的和丑陋的_html/css_WEB-ITnose
-
文本如何做到垂直居中对齐_html/css_WEB-ITnose
-
文本如何做到垂直居中对齐_html/css_WEB-ITnose
-
HTML与CSS入门--第五章 使用文本块和列表_html/css_WEB-ITnose
-
HTML与CSS入门--第五章 使用文本块和列表_html/css_WEB-ITnose
-
单选框和复选框与文本垂直对齐_html/css_WEB-ITnose
-
html文本垂直居中对齐_html/css_WEB-ITnose
-
如何让input文本框和图片对齐_html/css_WEB-ITnose
-
html文本垂直居中对齐_html/css_WEB-ITnose