html 怎样将 div相对定位在 底部

发布网友 发布时间:2022-04-24 15:32

我来回答

1个回答

热心网友 时间:2022-04-20 21:06

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
*{
padding: 0;
margin: 0;
    text-align: center;
}
    .div{
    position: fixed;
    bottom: 0;
    border-top: 1px solid #ccc;
    width: 100%;
    background-color: #fff;
    }
</style>
</head>
<body>
<div style="margin-bottom: 20px;">
其他内容 <br />其他内容 <br />其他内容 <br />其他内容 <br />
其他内容 <br />其他内容 <br />其他内容 <br />其他内容 <br />
其他内容 <br />其他内容 <br />其他内容 <br />其他内容 <br />
</div>
<div class="div">内容</div>
</body>
</html>

追问不行啊我说相对定位在底部, 这都绝对定位死了

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com