我有一个奇怪的蓝色边框,似乎只出现在iOS上。
enter image description here
我想我已经尝试了所有可能的:focus:active变量,但就是找不到它,我甚至不能在任何浏览器上的任何检查中重现边界。所以我有点迷路了。
这是密码
<li class="menu--list__items zoeken nav-item">
<a class="menu--list__items--link nav-link" href="#" id="zoekenDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Zoeken
<i class="material-icons">
search
</i>
</a>
<div class="dropdown-menu animate slideIn zoeken--dropdown" aria-labelledby="zoekenDropdown">
<input class="form-control dropdown-item" id="zoeken-term" type="search" name="q" placeholder="Waar bent u naar op zoek?" autocomplete="off" aria-label="Search">
<button type="submit" class="zoeken--dropdown--btn">
<i class="material-icons">
search
</i>
</button>
</div>
</li>
字符串
3条答案
按热度按时间d4so4syb1#
这可能不是正确或完美的答案,但你试过使用
!important
吗?与
:focus
或:active
组合应该可以工作。如果它只在IOS上,这可能会帮助你:https://developer.mozilla.org/de/docs/Web/CSS/WebKit_Extensions7hiiyaii2#
字符串
aurhwmvo3#
我认为你应该尝试
outline: none;
和 :focus*:active * 在这种情况下不起作用。轮胎
outline: none;
看看这个...
个字符