响应式

方法一.

@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)">
posted @ 2015-09-22 16:13  微-笑  阅读(91)  评论(0编辑  收藏  举报