如何实现DIV顶端对齐 10
外边大层包括内部123个小层2层为内容层,内容可能会多可能会少让3层顶端一直贴着2层的底部、求高手。谢谢!看图!...
外边大层
包括内部 1 2 3个小层
2层为内容层,内容可能会多可能会少
让3层顶端一直贴着2层的底部、
求高手。 谢谢!
看图! 展开
包括内部 1 2 3个小层
2层为内容层,内容可能会多可能会少
让3层顶端一直贴着2层的底部、
求高手。 谢谢!
看图! 展开
5个回答
推荐于2016-07-16 · 知道合伙人数码行家
关注
展开全部
两个div都设置为display: inline-block;这样可能会出现两个div顶端不对齐的情况,可以在右侧div设置vertical-align: top;
* { margin: 0; padding:0;}
.left {
display: inline-block;
}
.right {
display: inline-block;
vertical-align: top; //与左侧div顶部对齐
}
* { margin: 0; padding:0;}
.left {
display: inline-block;
}
.right {
display: inline-block;
vertical-align: top; //与左侧div顶部对齐
}
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>abc</title>
<style>
html, body, .global
{
width: 100%;
height: 100%;
margin: 0 auto;
padding: 0 auto;
position: relative;
}
.top
{
height: 100px;
background-color: #ff0000;
}
.middle
{
background-color: #0000ff;
width: 100%;
}
.bottom
{
height: 80px;
background-color: #00ff00;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
}
</style>
</head>
<body>
<div class="global">
<div class="top">
</div>
<div class="middle">
11111111111<br />
11111111111<br />
11111111111<br />
11111111111<br />
11111111111<br />
</div>
<div class="bottom">
</div>
</div>
</body>
中间高度是自适应的,试试看
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>abc</title>
<style>
html, body, .global
{
width: 100%;
height: 100%;
margin: 0 auto;
padding: 0 auto;
position: relative;
}
.top
{
height: 100px;
background-color: #ff0000;
}
.middle
{
background-color: #0000ff;
width: 100%;
}
.bottom
{
height: 80px;
background-color: #00ff00;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
}
</style>
</head>
<body>
<div class="global">
<div class="top">
</div>
<div class="middle">
11111111111<br />
11111111111<br />
11111111111<br />
11111111111<br />
11111111111<br />
</div>
<div class="bottom">
</div>
</div>
</body>
中间高度是自适应的,试试看
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不设置高度自动就是对齐的啊。要不你就在div加valign='top'
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把2层设置一个最小高度 min-height: 就可以了 在body里写margin:0;padding:0; 不然div之间会有空隙
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
div 里面加valign='top' 属性试试
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |