如何用css3实现div自适应高度
发布网友
发布时间:2022-04-26 18:21
我来回答
共2个回答
热心网友
时间:2022-04-06 13:14
一则好像会出现竖向滚动条,
二则,一旦content中内容多了……,
如果我没体会错,您是这个意思:
XML/HTML code?
<html>
<head>
<title>自适应高度测试</title>
</head>
<style>
html body {
height: 100%;
}
.header {
height: 100px;
}
.footer {
position: fixed;
bottom: 0;
}
</style>
<body>
<div class="header">This is header</div>
<div class="content">This is content</div>
<div class="footer">This is footer</div>
</body>
</html>
热心网友
时间:2022-04-06 14:32
给div加上width:100%;和float:left属性就可以实现