通过在页面中添加以下行,您<HTML>
可以定义特定于浏览器的样式表或 java 脚本文件。
对于 IE 浏览器
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="css/ie.css" />
<![endif]-->
对于非 IE 浏览器
<!--[if !IE]><!-->
<link rel="stylesheet" type="text/css" href="css/non-ie.css" />
<!--<![endif]-->
通过使用媒体查询,您可以通过定位所需的屏幕分辨率来创建响应式网站的布局。
@media screen and (max-width: 699px) and (min-width: 320px) {
div { background: blue; width: 100px; height: 100px; }
}
@media screen and (max-width: 1024px) and (min-width: 700px) {
div { background: green; width: 300px; height: 100px; }
}
@media screen and (max-width: 1280px) and (min-width: 1025px) {
div { background: red; width: 600px; height: 100px; }
}
示例小提琴
您可以详细了解如何使用媒体查询