ちょっとしたデザインの質問があります。私は自分のウェブサイトを、ヘッダーの両側に線がある場所に作成したいと考えています。
------------- 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;
}