gpt4 book ai didi

css - 如何在中间创建一 strip 有文本的垂直线

转载 作者:技术小花猫 更新时间:2023-10-29 11:00:56 26 4
gpt4 key购买 nike

我正在尝试创建一条中间有文本的垂直线。我不知道如何在 css 中实现这一点。

见图片enter image description here

最佳答案

其实有很多方法。

其中之一:

html

<div class="wrapper">
<div class="line"></div>
<div class="wordwrapper">
<div class="word">or</div>
</div>
</div>​

CSS

.wrapper {
position: relative;
width: 250px;
height: 300px;
border: 1px dashed #ccc;
margin: 10px;
}

.line {
position: absolute;
left: 49%;
top: 0;
bottom: 0;
width: 1px;
background: #ccc;
z-index: 1;
}

.wordwrapper {
text-align: center;
height: 12px;
position: absolute;
left: 0;
right: 0;
top: 50%;
margin-top: -12px;
z-index: 2;
}

.word {
color: #ccc;
text-transform: uppercase;
letter-spacing: 1px;
padding: 3px;
font: bold 12px arial,sans-serif;
background: #fff;
}

参见示例:http://jsfiddle.net/zmBrR/22/

关于css - 如何在中间创建一 strip 有文本的垂直线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13598148/

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