前端之家收集整理的这篇文章主要介绍了
html – 输入顶部边框在windows chrome中消失,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
code
我想知道为什么输入的顶部边界消失了.如果有人回答我,我将不胜感激.
os:win10
浏览器:chrome 51.0.2704.84m
谢谢.
最佳答案
由于转换发生了问题:translate(-50%,– 50%);
您可以修改css以删除转换
.center {
position: relative;
width: 100%;
}
.parent {
padding: 8px 0;
margin: 15% auto;
width: 100px;
}
label {
margin-left: 20px;
}
input {
width: 100px;
height: 41px;
}