码迷,mamicode.com
首页 > 其他好文 > 详细

响应式布局--引入外部样式

时间:2015-09-13 18:30:12      阅读:547      评论:0      收藏:0      [点我收藏+]

标签:

//当屏幕宽度小于480px的时候,引入demo.css

<link type="text/css" rel="stylesheet" href="style/demo.css" media="only screen and (max-width:480px)"/>

 

//当屏幕大于685px的时候,启用的css样式,(内联写法)

@media screen and (min-width : 685px){
  .header-top,.search-left,.search-right,.header-nav,.header-nav ul{
    padding: 0 !important;
  }
  .search-right input{
    width: 200px !important;
  }
}

响应式布局--引入外部样式

标签:

原文地址:http://www.cnblogs.com/toward-the-sun/p/4805267.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!