gpt4 book ai didi

html - 为什么 input[type ="text"] 改变焦点大小?

转载 作者:技术小花猫 更新时间:2023-10-29 12:01:46 25 4
gpt4 key购买 nike

假设我有一个输入。

html

<input type="text">

CSS:

input, input:focus {
border: none;
outline: solid 1px grey;
box-shadow: none;
}

单击时,输入会更改大小。我该如何阻止它?

http://codepen.io/mildrenben/pen/QwVvZK

最佳答案

如果您在 Chrome 中查看,那是因为以下默认用户代理样式:

input:focus, textarea:focus,
keygen:focus, select:focus {
outline-offset: -2px;
}

因此你需要设置outline-offset关注元素时为 0:

Updated Example

input:focus {
outline-offset: 0;
}

关于html - 为什么 input[type ="text"] 改变焦点大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28918383/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com