用Bootstrap写一个简单的响应式布局

首先写一个index.html文件:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
   <meta name="viewport" content="width = device-width,initial-scale=1"/>
<title>响应式布局实例</title>
</head>
<link rel="stylesheet" href="css/style.css" />
<body>
<div class="heading"></div>
<div class="container">
<div class="left"></div>
<div class="main"></div>
<div class="right"></div>
</div>
<div class="footing"></div>
</body>
</html>

其中<meta name="viewport" content="width = device-width,initial-scale=1"/>这句话必须要有,这是获取屏幕分辨率的方法;

然后我们写css自适应:

* {
margin: 0px;
padding: 0px;
}
html {
background-color: beige;
}
.heading,
.container,
.footing {
margin: 10px auto;
}
.heading {
height: 100px;
background-color: coral;
}
.left,
.right,
.main {
background-color: aquamarine;
}
.footing {
height: 100px;
background-color: #FF7F50;
}
@media only screen and (min-width: 960px) {
.heading,
.container,
.footing {
width: 960px;
}
.left,
.main,
.right {
float: left;
height: 500px;
}
.left,
.right {
width: 200px;
}
.main {
margin-left: 5px;
margin-right: 5px;
width: 550px;
}
.container {
height: 500px;
}
}
@media only screen and (min-width: 600px) and (max-width: 960px) {
.heading,
.container,
.footing {
width: 600px;
}
.left,
.main {
float: left;
height: 400px;
}
.right {
display: none;
}
.left {
width: 160px;
}
.main {
width: 435px;
margin-left: 5px;
}
.container {
height: 400px;
}
}
@media only screen and (max-width: 600px) {
.heading,
.container,
.footing {
width: 400px;
}
.left,
.right {
width: 400px;
height: 100px;
}
.main{
margin-top: 10px;
width: 400px;
height: 200px;
}
.right{
margin-top: 10px;
}
.container{
height: 420px;
}
}



在这里我分了3种情况  大于960PX,大于600PX小于960PX,和小于600PX  ;

@media only screen and (max-width: 600px) 的写法你学会了么?

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值