最好的媒体查询加载样式遗产

时间:2015-07-03 11:27:20

标签: css responsive-design media-queries

使用以下内容在我的浏览器中加载了所有三个css文件,然后应用了medium-device.css样式

 <link rel="stylesheet" 
media="only screen and (max-width: 480px), 
only screen and (max-device-width: 480px)" 
 href="/assets/css/small-device.css" />

 <link rel="stylesheet" 
media="only screen and (max-width: 1024px), 
only screen and (max-device-width: 1024px)" 
 href="/assets/css/large-device.css" />

 <link rel="stylesheet" 
media="only screen and (max-width: 1024px), 
only screen and (max-device-width: 1024px)" 
 href="/assets/css/medium-device.css" />

这会导致加载非重要文件,从而增加加载时间!

如何阻止浏览器加载不合适的css文件?

0 个答案:

没有答案
相关问题