如何在h1文本的中心制作小边框?

时间:2015-01-02 11:52:50

标签: css html5 css3

如何在h1文本的中心创建小边框?

Preview - What i need

2 个答案:

答案 0 :(得分:3)

使用伪元素::after在标题后面插入一个空白元素,并将其设置为看起来像边框:

#h_1{
    color:orange;
}
#h_1::after{
    content:"";
    display:block;
    position:absolute;
    width:25px;
    height:3px;
    background-color:maroon;
    margin-left:80px;
}
<h1 id="h_1">Our Services</h1>

答案 1 :(得分:3)

您可以使用:pseudo-element。

&#13;
&#13;
h1 span {
  position: relative;
  color: #F56B20;
}
h1 span:after {
  position: absolute;
  content: '';
  width: 15%;
  height: 1px;
  border-bottom: 2px solid #863C2F;
  bottom: -2px;
  left: 50%;
  margin-left: -7.5%;
}
&#13;
<h1><span>Our Services</span></h1>
&#13;
&#13;
&#13;