小编典典

Firefox和Chrome中输入的高度差异

css

为什么Chrome中的高度大于Firefox的输入高度

select, input, textarea, button {
    font: 99% sans-serif;
}

input, select {
    vertical-align: middle;
}

body, select, input, textarea {
    color: #444444;
}

button, input, select, textarea {
    margin: 0;
}


input, textarea {
    font-family: inherit;

    line-height: 1.5;
}


input {
    border: 0 none;
    font-size: 32px;
    line-height: 1.1;
    margin-right: 29px;
    padding: 3px 3px 0;
    width: 206px;
    border-radius: 7px;
}

阅读 320

收藏
2020-05-16

共1个答案

小编典典

问题本质上是line-height

Chrome的外观与Firefox line-height相似height

在输入中增加高度应该可以解决问题,尽管您应注意line-heightheight匹配。

例如:height: 20px; line-height: 20px;

2020-05-16