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

how to make small border in center of h1 text?

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

使用伪元素 ::after 在 header 之后插入一个空白元素,并将其设置为看起来像边框的样式:

#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>

您可以使用 :伪元素。

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%;
}
<h1><span>Our Services</span></h1>