媒体查询响应式布局的几个尺寸_响应式布局@media查询

1. 响应式布局

响应式布局指的是一个网站能适应多个终端,能在不同的客户端,将网页内容以不同布局的方式完整的显示出来。

2. @media查询

@media 可以针对不同的屏幕尺寸设置不同的样式,根据屏幕的大小的不同来显示不同布局的网页的内容。

@media查询 菜鸟链接:

CSS3 @media查询 | 菜鸟教程​www.runoob.com

可以通过@media查询 来判断网页实时宽度来更改css样式达成响应式布局的设计

3. @ media查询 的使用方式

  1. 直接在css中使用
    @media 类型 and (条件1) and (条件2){
        /*css样式*/
    }
    @media screen and (max-width:1024px) {
        body{
            background-color: red;
        }
    }

2. 使用@import导入(宽度小于1024px)

    @import url("css.css") screen and (max-width:1024px); 

3. 使用link方式引入(宽度小于1024px)

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

三种方式通过网页宽度来更改页面的css样式

<!doctype html>
<html>
<head>
    <meta charset="utf-8"/>
    <title>响应式</title>
    <link rel="stylesheet" type="text/css" href="index.css"/>
<link rel="stylesheet" type="text/css" href="index01.css" media="screen and (max-width:1024px) and (min-width:720px)"/>
    <link rel="stylesheet" type="text/css" href="index02.css" media="screen and (max-width:720px)"/>
</head>
<body>
    <div class="header">头部</div>
    <div class="main">
        <div class="left">左边</div>
        <div class="center">中间</div>
        <div class="right">右边</div>
    </div>
    <div class="footer">底部</div>
</body>
</html>

css部分代码:

*{
    margin:0;
    padding:0;
    text-align:center;
    color:yellow; 
}
 
.header{
    width:100%;
    height:100px;
    background:#ccc;
    line-height:100px;
}
.main{
    background:green;
    width:100%;
}
.left,.center,.right{
    float:left;
}
.left{
    width:20%;
    background:#112993;
    height:300px;
    font-size:50px;
    line-height:300px;
}
.center{
    width:60%;
    background:#ff0;
    height:300px;
    color:#fff;
    font-size:50px;
    line-height:400px;
}
.right{
    width:20%;
    background:#f0f;
    height:300px;
    font-size:50px;
    line-height:300px;
}
.footer{
    width:100%;
    height:50px;
    background:#000;
    line-height:50px;
    float: left;
}

720px宽度到1024px宽度的css代码:

.right{
    float:none;
    width:100%;
    background:#f0f;
    clear:both;
}
.left{
    width:30%;
}
.center{
    width:70%;
}
.main{
    height:600px;
}
小于720px宽度的代码:
.left,.center,.right{
    float:none;
    width:100%;
}

全屏效果图:

16b7b21b80eb986d449d281f6ed4ac37.png
全屏效果图

宽度在720-1024px的效果图:

e208b4185691ebcc833a86e116ef8efb.png
宽度在720-1024px效果图

宽度小于720px的效果图:

75acedc872d8a9891f0cdc16323219ed.png
宽度小于720px
  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值