我有一点设计问题。我想让我的网站到它有一个标题,其中包含两行的两行。
------------- Similar to this -----------------
我不知道我应该怎么做,我找不到任何实现它的网站能够窥探他们的html / css ..我应该怎么做?谢谢
答案 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;
}