如何去掉 chrome 中的输入框?
在 Chrome 中,我的设计在搜索输入字段的边缘有一个浅色边框或轮廓。我怎样才能摆脱这个?
In Chrome, my design has a light border or outline along the edges of the search input field. How can I get rid of this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
如果您指的是蓝色“发光”,请添加以下 CSS:
If you mean the blue "glow", add this CSS:
请注意,这将禁用选择元素箭头。
Mind that this will disable the select element arrow.
这将禁用所有常规表单元素的浏览器轮廓。
This will disable the browser outline for all regular form elements.
嘿,去除轮廓很容易。只需在 css 中将
none
设置为输入字段的outline
属性即可。例如,
上面将删除 chrome 和 safari 浏览器中表单元素焦点上的轮廓边框。
Hey, it is easy to remove outline. Just set
none
to input field'soutline
property in css.For e.g.
Above will remove outline border in chrome and safari browsers on form element focus.
这个片段对我有用:
This snippet worked for me: