无法删除焦点上的蓝色高亮镀铬

问题描述 投票:0回答:4

当您单击搜索时,会出现蓝色轮廓,由于某种原因,CSS 会忽略我应用的这些设置:

input:focus {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  outline-style: none !important;
  box-shadow: none !important;
  outline-color: transparent !important;
  outline-style: none !important;
  border:none !important;
  border-color: transparent !important;
}
html css
4个回答
2
投票

添加此CSS

.help-center .hc-search-form:focus-within{
   border: 0 none;
   box-shadow: none;
}

1
投票

您可以使用

outline: none; on focus

如何删除文本/输入框周围的焦点边框(轮廓)? (镀铬)

对于使用键盘导航的人要小心,它很有用


1
投票

将此添加到您的代码中:

* { outline: none !important; }


0
投票

<style>input:focus-visible {border: black solid 1px !important; box-shadow: 0px 0px 0px 0.1px inset !important;}</style>

© www.soinside.com 2019 - 2024. All rights reserved.