在我的CSS我有這樣的代碼:
html {
background:blue;
}
@media screen and (max-width: 980px)
html {
background:red;
}
因此,當瀏覽器窗口小於980px,背景變成紅色,的其餘時間,它是藍色的。
我把窗口大小調整爲970px(根據CSS),背景是紅色的。但是,當我使用jQuery來做一個alert($(window).width())
,這給了我一個彈出說1000px
爲什麼$(window).width()報告比CSS預期更大的值?
[內部寬度和外部寬度奇怪在桌面上]的可能重複(http://stackoverflow.com/questions/22468878/innerwidth-and-outerwidth-oddness -on桌面) – 2017-01-10 08:33:02