Hava To Konw css

单选框与复选框对齐问题

2019-01-23  本文已影响7人  solfKwolf

场景

当文字字体在12px时,文字相对于单选框和复选框的位置是偏下的!(谷歌浏览器)

截图

示例

解决方案

    input[type="radio"], input[type="checkbox"] {
      vertical-align: middle;
      margin-top:-2px;
      margin-bottom:1px;
    }
input[type="radio"], input[type="checkbox"] {
      vertical-align:-2px;
}

我在浏览器测试中 “-2px”看起来更舒服点。

参考资料

上一篇下一篇

猜你喜欢

热点阅读