gpt4 book ai didi

html - 背景渐变无法使用 bootstrap 3 正确显示

转载 作者:搜寻专家 更新时间:2023-10-31 23:04:59 25 4
gpt4 key购买 nike

当我向我的网页添加背景颜色渐变时,它可以正常工作,直到我的 body 元素中的最后一个容器结束。之后,渐变停止工作,您会看到容器的末端和空白页面的其余部分之间形成明显的对比。

亲眼看看:

从 layoutit.com 下载默认网页并编辑 css/style.css:

body {
background: #1e5799; /* Old browsers */
background: -moz-linear-gradient(top, #1e5799 0%, #207cca 30%, #2989d8 50%, #7db9e8 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1e5799), color-stop(30%,#207cca), color-stop(50%,#2989d8), color-stop(100%,#7db9e8)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #1e5799 0%,#207cca 30%,#2989d8 50%,#7db9e8 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #1e5799 0%,#207cca 30%,#2989d8 50%,#7db9e8 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #1e5799 0%,#207cca 30%,#2989d8 50%,#7db9e8 100%); /* IE10+ */
background: linear-gradient(to bottom, #1e5799 0%,#207cca 30%,#2989d8 50%,#7db9e8 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=0 ); /* IE6-9 */
}

CSS 由 http://www.colorzilla.com/gradient-editor/ 生成, 所以我相当确定它有效,因为它似乎是制作渐变的流行选择,而且它适用于非引导页面。

关于如何让渐变渲染整个页面有什么想法吗?

编辑http://theshachar.com/so/ 查看示例

谢谢!

最佳答案

根据您的编辑,问题是背景没有延伸到窗口高度。

要解决这个问题,只需添加:

html, body {
height:100%;
}

或者,您也可以使用 viewport-percentage unitsvw:

body {
height: 100vh;
}

你也可以设置一个min-height:

body {
min-height: 100vh;
}

关于html - 背景渐变无法使用 bootstrap 3 正确显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20590402/

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