我想在文字的左侧创建水平线。我有这样的想法,但是它在两边创造了一条线,但我只想在一边 - 左边或右边。我怎么能这样做?
h2 {
width: 100%;
text-align: center;
border-bottom: 1px solid #000;
line-height: 0.1em;
margin: 10px 0 20px;
}
h2 span {
background: #fff;
padding: 0 10px;
}
答案 0 :(得分:3)
使用您当前的HTML结构,您可以使用Flexbox
和:after
,:before
伪元素来执行此操作。
h2 {
display: flex;
align-items: center;
justify-content: center;
}
h2 span {
background: #fff;
margin: 0 15px;
}
h2:before,
h2:after {
background: black;
height: 2px;
flex: 1;
content: '';
}
h2.left:after {
background: none;
}
h2.right:before {
background: none;
}
<h2 class="left"><span>THIS IS A TEST</span></h2>
<h2 class="right"><span>LOREM</span></h2>
<p>this is some content</p>
答案 1 :(得分:2)
在尝试实现此效果时,我总是尝试使用:before和:之后的CSS类。
在下面的示例中,我“隐藏”右侧/:后行
h1 {
overflow: hidden;
text-align: center;
}
h1:before,
h1:after {
background-color: #000;
content: "";
display: inline-block;
height: 1px;
position: relative;
vertical-align: middle;
width: 50%;
}
h1:before {
right: 0.5em;
margin-left: -50%;
}
h1:after {
left: 0.5em;
margin-right: -50%;
display: none;
}
<h1>Heading</h1>
<h1>This is a longer heading</h1>
答案 2 :(得分:1)
像this之类的东西?你可以使用伪元素和绝对定位来做到这一点。
h2 {
position: relative;
width: 100%;
text-align: center;
line-height: 0.1em;
margin: 10px 0 20px;
}
h2:after {
z-index: -1;
position: absolute;
/* Change "right: 0" to "left: 0" for left side line */
right: 0;
content: '';
width: 50%;
border-bottom: 1px solid #000;
}
h2 span {
background: #fff;
padding: 0 10px;
}
&#13;
<h2><span>THIS IS A TEST</span></h2>
<p>this is some content</p>
&#13;
答案 3 :(得分:0)
使用div:
CSS
.line { display: inline-block; width: 100px; height: 1px; background-color: #000; }
h2 { display: inline-block; }
HTML
左侧水平:
<div class="line"></div>
<h2>Text Goes here</h2>
对于正确的横向:
<h2>Text Goes here</h2>
<div class="line"></div>