gpt4 book ai didi

css - 从左、上、下、右渐变颜色的边框

转载 作者:技术小花猫 更新时间:2023-10-29 11:20:29 25 4
gpt4 key购买 nike

我想添加一个边框,左上角为白色,右上角为深蓝色,左下角为深灰色,右下角为浅灰色/浅蓝色,带有渐变?

这可以使用 css 还是我应该使用背景图片? enter image description here

最佳答案

您可以使用 :before 伪元素和 linear-gradient 来创建类似边框的效果。

.element {
background: white;
position: relative;
width: 200px;
height: 150px;
margin: 50px;
}
.element:before {
content: '';
position: absolute;
left: -5px;
top: -5px;
width: calc(100% + 10px);
height: calc(100% + 10px);
background: linear-gradient(45deg, rgba(220, 218, 219, 1) 0%, rgba(255, 255, 255, 1) 42%, rgba(255, 255, 255, 1) 59%, rgba(125, 188, 220, 1) 100%);
z-index: -1;
}
<div class="element"></div>

关于css - 从左、上、下、右渐变颜色的边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39203482/

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