gpt4 book ai didi

css - 纯css中的偏移边框效果

转载 作者:太空宇宙 更新时间:2023-11-03 21:17:49 24 4
gpt4 key购买 nike

我正在尝试创建偏移边框效果。这可以用纯 css 来完成吗?

这些是按钮,因此会有不同的尺寸和颜色。

enter image description here

最佳答案

我使用伪元素 :after 来创建偏移边框效果。

body {
background: black;
padding: 30px;
}
div {
background: white;
height: 75px;
width: 175px;
position: relative;
}
div:after {
content: '';
background: transparent;
border: 1px solid white;
top: 7px;
right: 7px;
bottom: -7px;
left: -7px;
position: absolute;
z-index: -1;
}
<div></div>

关于css - 纯css中的偏移边框效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40528518/

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