红框内的效果应该怎么实现? 文字两边中间的线条
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>demo</title>
<style>
.text-box {
height: 60px;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.line {
height: 2px;
width: 100%;
background-color: #dedede;
position: absolute;
}
.text {
background-color: #fff;
padding: 4px 14px;
display: inline-flex;
letter-spacing: 2px;
z-index: 2;
}
</style>
</head>
<body>
<div class="text-box">
<div class="line"></div>
<div class="text">连接商业与科技 培养知行合一的经营人才</div>
</div>
</body>
</html>
一个:after或者:before + 定位就可以搞定了,也可以参考一下这样的布局(>_<虽然已被采纳):
.endBox{
display: flex;
justify-content: center;
width:100%;
padding:20px;
box-sizing: border-box;
position: relative;
}
.endBox p{
width:100%
text-align: center;
padding:0 20px;
background:#fff;
z-index: 2;
}
.endBox:after{
content: "";
position: absolute;
top:50%;
left:0;
width:100%;
border:1px solid #ccc;
z-index: 1
}
3 回答5.2k 阅读✓ 已解决
5 回答2.1k 阅读
2 回答2k 阅读✓ 已解决
1 回答3.1k 阅读✓ 已解决
3 回答2.5k 阅读
2 回答1.1k 阅读✓ 已解决
2 回答2.2k 阅读