Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试删除此站点顶部搜索表单上的活动边框:http: //teenhealth.s467.sureserver.com/。我相信这是一个默认设置,无法弄清楚如何/在哪里删除它。任何帮助将不胜感激!谢谢!
在style.css第 32 行的文件中,包括以下内容:
style.css
input#s:focus{ outline: none; }
如果您想确保在任何其他表单输入上都不会出现同样的蓝光,您可以将其放在 CSS 文件顶部附近的某个位置:
input:focus, select:focus, textarea:focus, button:focus{ outline: none; }
这将在聚焦时从所有表单元素中删除轮廓。