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.
引导模式对话框在 Safari 6 中呈现如下
这是 Safari 或 Bootstrap 框架的问题吗?
由于您没有提到 safari 的渲染问题到底是什么,我假设您正在谈论的蓝色轮廓
所以我猜 safari 正在使用它outline作为你的焦点模式窗口的默认值
outline
使用 CSS
首先简单地试试这个:
.yourmodalcontainer { outline: 0px; }
如果仍然没有成功,请尝试以下..
.yourmodalcontainer:focus { outline: 0px; }
对于您的模态窗口..这应该是固定的..