gpt4 book ai didi

html - 如何在div中为背景添加渐变色

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

您好,我想为我的 div 背景添加渐变色。我试过这段代码,但它不起作用

#apple {
background: #0E5D7B;
/* For browsers that do not support gradients */
background: -webkit-linear-gradient(white, #0E5D7B);
/* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(white, #0E5D7B);
/* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(white, #0E5D7B);
/* For Firefox 3.6 to 15 */
background: linear-gradient(white, #0E5D7B);
/* Standard syntax */
}
<div id="apple" style="height: 300px;width:auto;background-color:	 #0E5D7B; margin-top: 0px;">
</div>

请告诉我如何解决这个问题

最佳答案


#apple{
height: 300px;
width:auto;
background-color:#0E5D7B;
margin-top: 0px;
background:linear-gradient(white, lightblue);
}

<div id="apple">
</div>

关于html - 如何在div中为背景添加渐变色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39558896/

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