-2

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

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

どうすればいいのかわからず、html/css をのぞき見ることができるように実装しているサイトが見つかりませんでした。ありがとうございました

4

1 に答える 1

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/

于 2013-07-22T03:26:53.890 に答える