web-dev-qa-db-ja.com

両側に水平線がある見出し

私は、デザインがページタイトル(見出し)を左右どちらかの側で垂直方向に中央揃えされた水平線で中央揃えする必要があるCSSに取り組んでいます。さらに、ページに背景画像があるため、タイトルの背景は透明である必要があります。

タイトルを中央に配置し、擬似クラスを使用して行を作成できます。しかし、タイトルのテキストを横切るときに行が消える必要があります。

単語がある場所で透明になる背景グラデーションを使用することを検討しましたが、各タイトルの長さが異なる可能性があるため、ストップを配置する場所がわかりません。

これまでのCSSは次のとおりです。

h1 {  
    text-align: center;  
    position: relative;  
    font-size: 30px;  
    z-index: 1;  
}  

h1:after {  
    content: '';  
    background-color: red;  
    height: 1px;  
    display: block;  
    position: absolute;  
    top: 18px;  
    left: 0;  
    width: 100%;  
}  

ここに私がいる場所があります: http://jsfiddle.net/XWVxk/1/

これは、追加のHTMLを追加せずにCSSで実行できますか?

36
Tom Greever

これを見てください http://blog.goetter.fr/post/36084887039/tes-pas-cap-premiere-edition 、ここにあなたの答えがあります。

元のコードが変更されました

h1 {
    position: relative;
    font-size: 30px;
    z-index: 1;
    overflow: hidden;
    text-align: center;
}
h1:before, h1:after {
    position: absolute;
    top: 51%;
    overflow: hidden;
    width: 50%;
    height: 1px;
    content: '\a0';
    background-color: red;
}
h1:before {
    margin-left: -50%;
    text-align: right;
}
.color {
    background-color: #ccc;
}
<h1>This is my Title</h1>
<h1>Another Similar Title</h1>
<div class="color"><h1>Just Title</h1></div>

注:この記事はもうオンラインではありません。ここに最後の良いアーカイブバージョンがあります。 http://web.archive.org/web/20140213165403/http://blog.goetter.fr/post/36084887039/tes -pas-cap-premiere-edition

66
Romain Pellerin

これは数日前に必要でしたが、IEで受け入れられた答えが機能していません。

これが私が思いついたものです:すべての主要なブラウザで動作します(> = ie8)

jsfiddle: http://jsfiddle.net/gKve7/

HTML:

<h2 class="decorated"><span>My Title</span></h2>

CSS:

/* headlines with lines */
.decorated{
     overflow: hidden;
     text-align: center;
 }
.decorated > span{
    position: relative;
    display: inline-block;
}
.decorated > span:before, .decorated > span:after{
    content: '';
    position: absolute;
    top: 50%;
    border-bottom: 2px solid;
    width: 592px; /* half of limiter */
    margin: 0 20px;
}
.decorated > span:before{
    right: 100%;
}
.decorated > span:after{
    left: 100%;
}
34
electrophanteau

これはうまくいくかもしれません:

.floatClear {
  clear: both;
}
#wrapper {
  text-align: center;
  position: relative;
}
#wrapper .line {
  border-bottom: 2px solid red;
  position: absolute;
  width: 100%;
  top: 15px;
}
#wrapper .textbox {
  position: absolute;
  width: 100%;
}
#wrapper .textbox .text {
  background-color: white;
  margin: 0px auto;
  padding: 0px 10px;
  text-align: center;
  display: inline;
  font-size: 24px;
}
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="utf-8">
  <title>HTML</title>
  <link rel="stylesheet" href="main.css" type="text/css" />
</head>

<body>
  <div id="wrapper">
    <div class="line"></div>
    <div class="textbox">
      <div class="text">This is my Title</div>
    </div>
  </div>
</body>

</html>

ここで何が起こるかは、テキストブロックの背後にある行を非表示にするように、背景と背景色にサイドパディングを加えた行にテキストを設定することです。

2
user1467267