再此基础上继续增加一个底部距离主要内容150px,但如果内容不足以把底部撑到底部则让底部一直在底部
时间: 2024-03-09 20:51:01 浏览: 61
可以在上述HTML模板中加入一个固定在底部的元素,如下所示:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>自适应布局模板</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
}
body {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
background-color: #f2f2f2;
position: relative;
padding-bottom: 150px;
min-height: 100%;
}
.footer {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 150px;
background-color: #ddd;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.box {
width: calc(33.33% - 20px);
margin-bottom: 20px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 5px;
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
.box img {
display: block;
width: 100%;
height: auto;
}
.box h3 {
margin: 10px;
font-size: 20px;
font-weight: bold;
color: #333;
text-align: center;
}
.box p {
margin: 10px;
font-size: 16px;
color: #666;
text-align: justify;
}
@media screen and (max-width: 767px) {
.box {
width: calc(50% - 20px);
}
}
@media screen and (max-width: 479px) {
.box {
width: 100%;
}
}
</style>
</head>
<body>
<div class="container">
<div class="box">
<img src="https://via.placeholder.com/300x200" alt="">
<h3>标题一</h3>
<p>内容一</p>
</div>
<div class="box">
<img src="https://via.placeholder.com/300x200" alt="">
<h3>标题二</h3>
<p>内容二</p>
</div>
<div class="box">
<img src="https://via.placeholder.com/300x200" alt="">
<h3>标题三</h3>
<p>内容三</p>
</div>
<!-- 添加更多的盒子 -->
</div>
<div class="footer">
<!-- 底部内容 -->
</div>
</body>
</html>
```
这段代码中,我们使用了position属性来让底部元素固定在页面底部。通过给body元素设置padding-bottom属性的值,来让底部元素距离主要内容150px。当主要内容高度不足以填满整个屏幕时,底部元素仍然会保持在页面底部。而当主要内容高度超过屏幕高度时,底部元素会被推到屏幕下方,以保证页面内容不会被遮挡。
阅读全文