gpt4 book ai didi

html - 正文没有延伸到页面的最后?

转载 作者:行者123 更新时间:2023-11-28 03:39:15 25 4
gpt4 key购买 nike

我的网站中有一个页脚,我希望在该页脚中有一些文本与页面右下角对齐。

页脚看起来像这样:

  <div class="container-fluid">
<div class="row copyright-container col-md-10 col-md-offset-1">
<div class="copyright">
<p>&copy; Some Copyright Stuff 2011 - 2020</p>
</div>
</div>

我的 SCSS 是这样的

.copyright {
bottom: 0;
right:0;
}

我只想对齐最右下角的东西。有点像,但我的 body 似乎没有延伸到页面的最后,但我不知道为什么。

我曾尝试将我的 body 设置为 100% 的高度,但这也无济于事 ( <body style="height:100%;"> )。我对我的 html 进行了同样的尝试。

我的代码片段如下所示。如您所见,一切正常,但在我的计算机上,正文仅在页面的 2/3 处结束。为什么会这样?

.copyright {
position: absolute;
bottom: 0;
right:0;
}

.bg {
background-color: black;
}

<html>
<body>

<div class="container-fluid">
<div class="row copyright-container col-md-10 col-md-offset-1">
<div class="copyright">
<p> Some Copyright 2011 - 2020</p>
</div>
</div>
</div>

</body>
</html>

最佳答案

如果您使用的是 col-md-*,那么您应该添加 col-sm-* 和 col-xs-*,这样如果您的屏幕很小,就会应用合适的 css。这可能是您的代码不起作用的原因之一。

 <div class="copyright col-xs-2 col-xs-offset-10 col-sm-2 col-sm-offset-10 col-md-2 col-md-offset-10">
<p>Some Copyright Stuff 2011 - 2020</p>
</div>

或者您可以像我在下面添加的代码那样使用纯 css 来做到这一点,但是使用 css 而不是 scss,因为浏览器不理解 scss( Nested code in scss/sass )。

.copyright {
position: absolute;
bottom: 0;
right:0;
}
<div class="copyright">
<p>Some Copyright Stuff 2011 - 2020</p>
</div>

关于html - 正文没有延伸到页面的最后?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44311138/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com