外部div是float 如何让里面的div上下对齐
发布网友
发布时间:2022-04-20 20:53
我来回答
共2个回答
懂视网
时间:2022-04-21 01:14
111111122222233333333
cccc为什么不和aaaa对齐,而是和bbbb对齐了
回复讨论(解决方案)
坚决消灭零回复。
111111133333333222222
这样就可以了,
共1000px
共1000px a占745px b占745 c 占242 a 和b 不能占一行 因为没有足够的容间,所以b下来了,c不可能上到a对齐 所以和b对齐了
热心网友
时间:2022-04-20 22:22
里面的两个div长宽设置成一样的,都float不就上下对齐了吗,还是有什么特殊要求?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
.wrap{width:100%;height:500px;background: red;float:left;}
.wrap div:nth-child(1){width:200px;height:200px;background: yellow;float: left}
.wrap div:nth-child(2){width:200px;height:200px;background: blue;float: left;}
</style>
</head>
<body>
<div class="wrap">
<div></div>
<div></div>
</div>
</body>
</html>