gpt4 book ai didi

css - 即带有高度的背景颜色显示在整页上

转载 作者:行者123 更新时间:2023-11-28 12:54:30 27 4
gpt4 key购买 nike

我有这个非常简单的 CSS 代码。

body {
background-color: #08407A;
min-width: 1000px;
height: 500px;
}

这个在 IE 中根本不起作用。背景是全彩色的,但我只需要 500px 的背景。我已经尝试了所有的background-coverbehavior。但这对我来说没有用。

最佳答案

您不应该将正文用作固定宽度的容器。

限制 body 的宽度没有意义,因为它代表了整个浏览器窗口。

相反,尝试使用 block 元素,例如 <div>实现您的结果。

HTML:

<div class="myDiv">
This is my content
</div>

CSS:

.myDiv { background-color:#08407A; min-width:1000px; height:500px; }

关于css - 即带有高度的背景颜色显示在整页上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16654154/

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