gpt4 book ai didi

html - 在 CSS 中裁剪除图像之外的背景

转载 作者:太空宇宙 更新时间:2023-11-03 20:33:45 25 4
gpt4 key购买 nike

我正在尝试制作如下所示的图案: enter image description here

由“或”分隔的边界线。

以下是我的代码。

#container {
height: 300px;
background: url(http://www.noupe.com/wp-content/uploads/2009/10/pattern-03.jpg);
background-size: cover;
padding: 10px;
position: relative;
}
#div1 {
float: left;
width: 50%;
border-right: 2px solid white;
height: 300px;
position: relative;
}
#div1:after {
content: 'Or';
padding: 20px;
top: 40%;
position: absolute;
right: 0;
padding-right: 0px;
margin-right: -7px;
color: #fff;
background: #ccc;
}
#div2 {
float: left;
width: 50%;
height: 300px;
}
.clearfix:after {
content: "";
display: table;
clear: both;
}
<div id="container" class="clearfix">

<div id="div1">

</div>
<div id="div2">

</div>

</div>

我正在寻找一种方法从 div1:after 的周边删除线的一部分 - 包含“或”的 div,是否有使用此标记在 css 中实现此目的的方法?

最佳答案

只需将行拆分为两个元素并将它们从“或”移开:

#container {
height: 300px;
background: url(http://www.noupe.com/wp-content/uploads/2009/10/pattern-03.jpg);
background-size: cover;
padding: 10px;
position: relative;
}
#div1 {
position: absolute;
left: 50%;
margin-left: -20px;
height: 100%;
overflow: hidden;
width: 40px;
}
#div1 span {
vertical-align: middle;
position: absolute;
left: 0;
top: 50%;
margin-top: -10px;
color: white;
display: inline-block;
width: 100%;
text-align: center;
}
#div1:before,
#div1:after {
content: '';
position: absolute;
left: 19px;
width: 2px;
height: 50%;
background-color: white;
}
#div1:before {
top: -20px;
}
#div1:after {
bottom: -20px;
}
<div id="container" class="clearfix">
<div id="div1"><span>OR</span>
</div>
</div>

关于html - 在 CSS 中裁剪除图像之外的背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36977049/

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