Chrome中原生表单输入框或者按钮active时会有一个蓝色的外廓边框,个人觉得比较难看
http://stackoverflow.com/q/2943548/1299675综合上面这个帖子里和Google得到的一些css hack,可以去掉:
input, input:focus, button, button:focus{
outline:none;
outline:1px !important;
}
但是这样写CSS样式后,在有的浏览器里会有问题:
输入框无法获得焦点
而且也存在原答主说的那个问题:
but keep in mind this is potentially bad for usability: It will be hard to tell whether an element is focused, which can suck when you walk through all a form's elements using the Tab key - you should reflect somehow when an element is focused.
---------------------------------------------
请问大家都是怎么解决这个问题的?
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/128873
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.