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.
当我autofocus="autofocus"在输入元素上设置时,然后在 Firefox 中,当页面加载时,它会在没有应用 CSS 的情况下显示片刻。(例如,内容未居中,标题以默认字体呈现等)
autofocus="autofocus"
如果我删除自动对焦,页面加载正常并在准备好时显示。
autofocus在 Firefox 中使用该功能时,有没有办法让页面正常加载?
autofocus
我发现通过在 中添加一些 JavaScript <head>,页面会在焦点之前等待样式加载。
<head>
我不完全确定为什么会这样,但确实如此!
例子:
<script type="text/javascript"> // Fix for Firefox autofocus CSS bug // See: http://stackoverflow.com/questions/18943276/html-5-autofocus-messes-up-css-loading/18945951#18945951 </script>