gpt4 book ai didi

html - CSS 渐变停止然后重复

转载 作者:行者123 更新时间:2023-11-28 18:33:33 24 4
gpt4 key购买 nike

我想在我的网站上制作一个渐变背景。这是因为我刚开始制作网站,我只想了解 CSS 的工作原理和其他工作原理。

这是我的代码:

background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%); /* FF3.6+ */
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.65))); /* Chrome,Safari4+ */
background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, 0.65) 100%); /* Chrome10+,Safari5.1+ */
background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%); /* Opera 11.10+ */
background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%); /* IE10+ */
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */

我不希望渐变停止然后从白色开始重复。我希望渐变根据当前媒体的大小而改变。

最佳答案

将 html 和 body 的 heightwidth 设置为 100%,背景的这些选项:

background-repeat: no-repeat;
background-attachment: fixed;

Demo

如果您不这样做,当您滚动超过浏览器的高度时,渐变将重复。

关于html - CSS 渐变停止然后重复,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13548018/

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