gpt4 book ai didi

css渐变实现2色虚线边框

转载 作者:行者123 更新时间:2023-12-05 00:50:59 27 4
gpt4 key购买 nike

关于如何使用渐变在 css 中实现自定义边框以看起来与下图完全一样的任何想法

enter image description here

最佳答案

渐变结合蒙版可以做到:

.box {
width: 300px;
height: 200px;
position: relative;
}
.box:before {
content:"";
position: absolute;
inset:0;
padding: 4px; /* the border thickness */
background:
repeating-conic-gradient(pink 0 25%,blue 0 50%) /* update the colors here */
0 0/30px 20px round; /* update the size here (30px = width, 20px = height) */
-webkit-mask:
linear-gradient(#000 0 0) content-box,
linear-gradient(#000 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
}
<div class="box"></div>

关于css渐变实现2色虚线边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73305041/

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