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.
所以,我为我的网站制作了 2 个 CSS 文件,normal.css 和 widescreen.css,我希望我的网站根据分辨率使用不同的 CSS 文件,正常情况下为 normal.css,假设屏幕宽度大于1280
谢谢
大多数现代浏览器都支持。请注意,我相信这不适用于 IE8 或更低版本。
@media screen and (min-width: 1024px){ /* CSS here */ } @media screen and (max-width: 1024px){ /* CSS here */ }