如何使用 CSS 将 DIV 的内容与底部对齐
主题:HTML / CSS
答案:使用 CSS position
属性
您可以使用 CSS 定位方法将 DIV 的内容与底部对齐。
在以下示例中,具有 .content
类的 DIV 元素将放置在 .box
DIV 元素的底部。 让我们尝试一下以了解它的实际工作原理:
示例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CSS 将 Div 的内容对齐到底部</title>
<style>
.box{
color: #fff;
background: #000;
position: relative;
min-height: 200px;
padding-bottom: 30px; /* 避免内容重叠 */
}
.box .content{
position: absolute;
bottom: 0;
left: 0;
}
</style>
</head>
<body>
<div class="box">
<h1>Page Title</h1>
<div class="content">This piece of text will remain at the bottom of the parent div all the time.</div>
</div>
</body>
</html>
FAQ 相关问题解答
以下是与此主题相关的更多常见问题解答: