gpt4 book ai didi

css - 将背景颜色的底边设为另一种颜色

转载 作者:行者123 更新时间:2023-11-28 11:22:58 26 4
gpt4 key购买 nike

我希望我的 background-color 的底部是另一种颜色。我确定它涉及一个linear-gradient?但不确定如何实现

示例代码:

.background{
height:100px;
width:200px;
background-color: #11143b;
background: linear-gradient(top, red, red 70%, transparent 70%, transparent 100%);
}
<div class="background">
</div>

我最终希望上面的代码看起来如何: enter image description here

如有任何帮助,我们将不胜感激。

最佳答案

就像这样:

.background{
height:100px;
width:200px;
background:
linear-gradient(to bottom right, transparent 49%,red 52%) bottom / 100% 20px no-repeat,
#11143b;
}
<div class="background">
</div>

关于css - 将背景颜色的底边设为另一种颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50911876/

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