WEB 教程
实践 示例
HTML 参考手册
CSS 参考手册
PHP 参考手册

如何使用 CSS 将 DIV 的内容与底部对齐

主题:HTML / CSS上一页|下一页

答案:使用 CSS position 属性

您可以使用 CSS 定位方法将 DIV 的内容与底部对齐。

在以下示例中,具有 .content 类的 DIV 元素将放置在 .box DIV 元素的底部。 让我们尝试一下以了解它的实际工作原理:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CSS Align Content of a Div to the Bottom</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 相关问题解答

以下是与此主题相关的更多常见问题解答:

Advertisements