HTML ugly borders around divs on click
本问题已经有最佳答案,请猛点这里访问。
我有一个潜水器做的导航。单击一个DIV时,请求的页面将加载到另一个DIV中。
我现在的问题是,Safari和Chrome在我点击的任何分区周围都会形成一个丑陋的边界。
。
如何摆脱这个边界?
我已经试过了
1 2 3 4 5 6 7 8 9 10 | *, *:focus, *::-moz-focus-inner, div, div:focus, div::-moz-focus-inner { -moz-user-select: -moz-none; -khtml-user-select: none; -webkit-user-select: none; -o-user-select: none; user-select: none; border: none; outline: none; -webkit-overflow-scrolling: touch; } |
但它不起作用…
用这个……
1 2 3 4 | -webkit-user-select: none; /* Safari 3.1+ */ -moz-user-select: none; /* Firefox 2+ */ -ms-user-select: none; /* IE 10+ */ user-select: none; /* Standard syntax */ |
尝试删除CSS中的大纲:
1 2 3 | .that-div { outline: 0; } |
号
(或大纲:无)。