IE8支持CSS媒体查询IE8是否不支持以下CSS媒体查询:@import url("desktop.css") screen and (min-width: 768px);如果不是,另一种写作方式是什么?在Firefox中,同样的功能也很好。下面的代码有什么问题吗?@import url("desktop.css") screen; @import url("ipad.css") only screen and (device-width:768px);
3 回答
有只小跳蛙
TA贡献1824条经验 获得超8个赞
<link rel="stylesheet" type="text/css" media="all" href="style.css"/><!--[if lt IE 9]> <link rel="stylesheet" type="text/css" media="all" href="style-ie.css"/> <![endif]-->
烙印99
TA贡献1829条经验 获得超13个赞
@import
<link>
<style>
min-width
max-width
添加回答
举报
0/150
提交
取消