画像で、h1を作成した場合の
h1のテキストを隠す方法
h1に書き込む3点セット
1 2 3 4 5 6 7 |
[css]</p> <p>h1 {</p> <p>text-indent: 100%;</p> <p>white-space: nowrap;</p> <p>overflow: hidden;</p> <p>/* wrap: 改行 nowrap 改行しない*/ /*text-indent: -99999px; 昔のやりた、読み込みに時間がかかるので、オススメしない*/ }</p> <p>[/css] |
1234567[css autolinks="false" classname="myclass" collapse="false" firstline="1" gutter="true" highlight="1-3,6,9" htmlscript="false" light="false" padlinenumbers="false" smarttabs="true" tabsize="4" toolbar="true" title="example-filename.php"]</pre><p>h1 {</p><p>text-indent: 100%;</p><p>white-space: nowrap;</p><p>overflow: hidden;</p><p>/* wrap: 改行 nowrap 改行しない*/ /*text-indent: -99999px; 昔のやりた、読み込みに時間がかかるので、オススメしない*/ }</p><pre>[/css]
コメント