画像を使わずに見出しを水平線で挟むCSS小技

Ads
cssやプログラミング

CSS
 
 
 使
 
 

IE67

demo



CSSTips

CSS

h1 {
    border-top: 1px solid black; 
    margin:23px 0 0; 
    text-align:center; 
    padding:0; height:24px;
}

  h1 span { 
    position: relative; 
    top: -24px; 
    padding: 0 20px; 
    background:white;
}

border使h1borderspancss

html

<h1><span>Kachibito</span></h1>


jQuery使


spanjQueryspan
$(document).ready(function() {
      var h = $('h1'),
          htext = $(h).text(),
          full = '<span>' + htext + '</span>';
      $(h).html(full);
    });

IE6


 IE678
 [note][/note]
 使
 

via:impressivewebs
タイトルとURLをコピーしました