我有一个小设计问题。我想让我的网站有一个标题,两边都有一条线。
------------- Similar to this -----------------
我不知道我应该怎么做,我找不到任何实现它的网站能够窥探他们的 html/css .. 我应该怎么做???谢谢你
标记:
<div class="section-heading">
  <h1>Your Heading</h1>
</div>
CSS:
.section-heading {
  text-align: center;
  margin-bottom: 15px;
  border-bottom: solid 1px #dcdcdc;
  position: relative;
  top: -2.2em;
}
.section-heading h1{
  display: inline;
  padding: 0 15px;
  bottom: -15px;
  position: relative;
  background: #fff;
}