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.
在网站http://www.bikemap.net/en/上工作时,我想解决有关地图全屏模式的问题。单击按钮时,会导致 webkit 浏览器中出现全黑屏。在 Firefox 中正常工作。有没有人遇到过类似的问题?
我有同样的问题。我花了好几天才弄清楚问题出在哪里。在我的情况下,<div>我想用以下 CSS 集制作全屏帽子:
<div>
#mydiv { width: auto !important; }
有些如果您将宽度设置为自动 WebKit 使其在全屏模式下为 0 像素宽!我删除了auto,现在一切正常!
auto
希望这会有所帮助,安东