text-indent:-99999px;ではない画像置換方法
GWの予定をたてるのが遅すぎてどこにも行けないかもしれない…むしろ行きたくない…ひきこもりたい…今日この頃です
そんな時に出会ったのが、この画像置換用css↓
Replacing the -9999px hack
今までは、
<h1>タイトルだよん</h1>
として、
h1 {
background:url(img/logo.png) no-repeat;
width:310px;
height:80px;
text-indent:-99999px;
}
なんてやってたのを、↓で、OK!
h1 {
background:url(img/logo.png) no-repeat;
width:310px;
height:80px;
text-indent:100%;
white-space:nowrap;
overflow:hidden;
}
マイナス指定しないとこがすっきり♪