gpt4 book ai didi

html - 如何制作不规则的CSS边框

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

我正在尝试使用 CSS 来做到这一点:

enter image description here

白色背景很容易做到,但是如果它有背景图像,我该如何做这个布局呢?这就是我的意思:

enter image description here

我实际上是将一个 div 绝对定位在另一个里面:

<div class="main-div">
<div class="main-div-overlay-text">
SOME TEXT
</div>
SOME TEXT HERE
</div>

.main-div {
position: relative;
width: 200px;
height: 150px;
border: 2px solid white;
}

.main-div-overlay-text {
position: absolute;
left: 0;
right: 0;
margin: auto;
top:-10px;
}

最佳答案

尝试使用 <fieldset><legend> .

body {
background: grey;
}
fieldset {
border: 1px solid white;
color: white;
text-align: center;
width: 200px;
}
legend {
padding: 0 10px;
}
<fieldset>
<legend>Title</legend>
<p>Text</p>
</fieldset>

要在 Firefox 中将图例居中,请使用 <legend align="center">

关于html - 如何制作不规则的CSS边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36414865/

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