网页布局——左侧固定,右侧自适应

2018-06-24 00:49:54来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

第一种方法:采用绝对定位

<!DOCTYPE>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.one {
position: absolute;
height: 200px;
width: 300px;
background-color: blue;
}
.two {
height: 200px;
margin-left: 300px;
background-color: red;
}
</style>
</head>
<body>
<div class="one"></div>
<div class="two">第一种方法</div>
</body>
</html>

第二种方法:采用左浮动

<!DOCTYPE>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.one {
float:left;
height: 200px;
width: 300px;
background-color: blue;
}
.two {
overflow: auto;
height: 200px;
background-color: red;
}
</style>
</head>
<body>
<div class="one"></div>
<div class="two">第二种方法</div>
</body>
</html>

 第三种方法:采用flex布局(推荐使用)

<!DOCTYPE>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no" />
<title>Document</title>
<style>
*{padding: 0;margin: 0;}
#oo{
    display: flex;
    flex-wrap: wrap;
}
.one {
    float:left;
    height: 200px;
    width: 200px;
    background-color: blue;

}
.two {
    background-color: red;
    flex: 1;    
}
.three{
    background-color: pink;
    flex: 2;
}
</style>
</head>
<body>
<div id="oo">
    <div class="one">1</div>
    <div class="two">2</div>
    <div class="three">3</div>
</div>
</body>
</html>

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:placeholder不兼容 IE10 以下版本的解决方法

下一篇:设置图片和文字的垂直居中