【发布时间】:2015-06-27 03:46:30
【问题描述】:
这是我的index.html:
<html>
<head>
<title>My Website</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" media="screen and (max-resolution: 96dpi)" type="text/css" href="css/app_normal.css"/>
<link rel="stylesheet" media="screen and (min-resolution: 97dpi) and (max-resolution: 192dpi)" type="text/css" href="css/app_medium.css"/>
<link rel="stylesheet" media="screen and (min-resolution: 193dpi)" type="text/css" href="css/app_hi.css"/>
这适用于Chrome 和Firefox(我不在乎IE!)但不适用于Safari。我应该如何纠正这个问题?
谢谢
【问题讨论】:
标签: html css media-queries