gpt4 book ai didi

css - 双边框 CSS

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

我一直在做一个元素,我能够创建一个带有框阴影的双边框 css...但问题是我需要第一个框的透明度..

我尝试了一些东西:

* {
box-sizing: border-box;
}

body {
display: flex;
min-height: 100vh;
justify-content: center;
align-items: center;
}

.box {
width: 5rem;
height: 3rem;
background-color: #789;
border: 3px solid black;
box-shadow: 8px -8px 0 -3px #ccc, 8px -8px 0 0 #000;
}
<div class="box"></div>

我需要 http://prntscr.com/nw6fed - 第一个框的背景应该是透明的...任何帮助

最佳答案

您可以使用伪元素获得第二个边框。我在这个例子中使用了 :after。

.box {
width: 200px;
height: 200px;
border: 3px solid cyan;
position: relative;
padding: 40px;
box-sizing: border-box;
}

.box::after {
content: '';
height: 100%;
width: 100%;
position: absolute;
display: block;
top: 20px;
left: 20px;
border: 3px solid magenta;
}
<div class="box">
<h1>Text</h1>
</div>

关于css - 双边框 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56403853/

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