要想使一个div里面包含的两个子div并排显示,要用绝对定位还是相对定位?

 我来答
百度网友10cddec
推荐于2018-06-25 · TA获得超过455个赞
知道小有建树答主
回答量:196
采纳率:33%
帮助的人:135万
展开全部
第一:你的定位理解不正确。 使用绝对定位,需要有相对定位来支持,如果单纯使用绝对定位,如果显示器尺寸变化就会出问题,因为绝对定位会去寻找一个初始坐标,不设置的话,默认是去寻找body的0,0坐标来做初始定位坐标。

第二:可使用其他方式来实现,两个div并排显示,可以使用浮动即可。

两种方法具体实现代码如下:
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS3 Demo</title>

<style>

.box{
position: relative;
height: 300px;
width: 800px;
margin: 0px auto;
background: #F9F9F9;
}
.box_01,.box_02{
position: absolute;
height: 280px;
width: 380px;
background: #999999;
top: 10px;
}
.box_01{
left: 10px;
}
.box_02{
right: 10px;
}

.box_other{
padding: 10px;
width: 780px;
margin: 0px auto;
background: #F9F9F9;
}
.crl{
clear: both;
height: 0px;
overflow: hidden;
}
.box_other_01,.box_other_02{
width: 380px;
height: 280px;
background: #999999;
}
.box_other_01{
float: left;
}
.box_other_02{
float: right;
}
</style>
</head>
<body>
<div class="box">
<div class="box_01">01</div>
<div class="box_02">02</div>
</div>
<div class="box_other">
<div class="box_other_01">01</div>
<div class="box_other_02">02</div>
<div class="crl"></div>
</div>

</body>
</html>
lyz810
推荐于2017-09-25 · 知道合伙人互联网行家
lyz810
知道合伙人互联网行家
采纳数:7531 获赞数:31777
前端开发工程师

向TA提问 私信TA
展开全部
<div class="container">
    <div class="div-left"></div>
    <div class="div-right></div>
</div>

方法一

.container{width:200px;height:200px;}
.container div{width:100px;height:200px;float:left;}
.div-left{background:red;}
.div-right{background:blue;}

方法二

.container{width:200px;height:200px;position:relative}
.container div{width:100px;height:200px;position:absolute}
.div-left{background:red;left:0;top:0}
.div-right{background:blue;left:100px;top:0}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友ff9743f
2017-09-25
知道答主
回答量:5
采纳率:0%
帮助的人:4428
展开全部
都不用,用float或者display
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式