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 Firefoxではtop: 56px正しく表示されますが、GoogleChromeでは正しく表示されません。
top: 56px
topGoogle Chromeで設定する方法はありますか?
top
Webkitベースのブラウザーのハックがあります。次のように書きます。
@media screen and (-webkit-min-device-pixel-ratio:0) { div{top:0;} }
これは、Webkit ベースのブラウザー (Chrome、Safari など) にのみ適用される CSS ステートメントです。