已知宽,上高度固定,下自适应怎么写?
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>上固定,下自适应</title>
<style type="text/css">
html *{
padding: 0;
margin: 0;
}
</style>
</head>
<body>
<article class="layout position">
<style type="text/css">
.layout.position .top-bottom{
position: absolute;
width: 100%;
}
.layout.position .top-bottom div{
min-height: 100px;
}
.top{
top: 0;
background: red;
}
.bottom{
top: 100px;
background: blue;
}
</style>
<section class="top-bottom">
<div class="top"></div>
<div class="bottom">
<h1>定位解决方案</h1>
<p>这是页面底部内容</p>
<p>这是页面底部内容</p>
<p>这是页面底部内容</p>
<p>这是页面底部内容</p>
<p>这是页面底部内容</p>
<p>这是页面底部内容</p>
</div>
</section>
</article>
</body>
</html>
<!-- 用浮动怎么写? -->
正在回答
那就不设置整体的高度或者设置高度为auto,由子元素撑开就可以了哟。
祝学习愉快~
- 参与学习 人
- 提交作业 11218 份
- 解答问题 36713 个
从一个不会编程的小白到一个老司机是需要过程的,首先得入门,学习基础知识,然后才能进阶,最后再到精通,本专题是你走进前端世界的不二选择!
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星