我怎样才能在我的网站上这样做?

时间:2013-07-22 03:03:25

标签: html css

我有一点设计问题。我想让我的网站到它有一个标题,其中包含两行的两行。

------------- Similar to this -----------------

我不知道我应该怎么做,我找不到任何实现它的网站能够窥探他们的html / css ..我应该怎么做?谢谢

1 个答案:

答案 0 :(得分:0)

标记:

<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;
}

http://jsfiddle.net/9ss5h/