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.
在 Mozilla Firefoxtop: 56px中显示正确,但在 Google Chrome 中显示不正确。
top: 56px
有没有办法top在谷歌浏览器中设置?
top
基于webkit的浏览器有 hack 。像这样写:
@media screen and (-webkit-min-device-pixel-ratio:0) { div{top:0;} }
这是一个仅适用于基于 webkit 的浏览器(Chrome、Safari 等)的 CSS 语句