gpt4 book ai didi

html - 一侧彩色边框

转载 作者:搜寻专家 更新时间:2023-10-31 22:24:05 24 4
gpt4 key购买 nike

我最近看到了这种边框(source) enter image description here

我说的是左边的黄色边框。我觉得它的特别之处在于它的右侧是完全笔直的,因此您可以在它旁边放一条垂直线,该垂直线要么完全击中黄色部分,要么根本不击中任何黄色部分:

enter image description here

如何在 CSS 中制作这样的边框?我明确地不想做这样的事情:

div {
border-left:5px solid blue;
border-radius:10px;
height:50px;
}
<div></div>

enter image description here

如果你在 hit 旁边放一条垂直线,它会碰到 border 的边缘:

enter image description here

我希望我描述了它以便人们能够理解它。否则请随时编辑这篇文章,谢谢。

最佳答案

一个简单的背景就可以了:

.box {
margin:10px;
width:200px;
height:100px;
border-radius:15px;
background: /*width height*/
linear-gradient(gold,gold) left/10px 100% no-repeat,
#f2f2f2;
}
<div class="box">

</div>

另一种语法:

.box {
margin: 10px;
width: 200px;
height: 100px;
border-radius: 15px;
background: linear-gradient(to right, gold 10px, #f2f2f2 0);
}
<div class="box">

</div>

关于html - 一侧彩色边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57377898/

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