方法一.
@media screen and (max-width: 600px) { /*当屏幕尺寸小于600px时,应用下面的CSS样式*/ .class { background: #ccc; } }
方法二.
<link rel="stylesheet" type="text/css" href="styleA.css" media="screen and (min-width: 400px)">