display: none
<h1><span>Headline 1</span></h1>
h1{
background: url(headline1.png);
width: 200px;
height: 100px;
}
h1 span{
display:none;
}
visibility: hidden
<h1><span>Headline 1</span></h1>
h1{
background: url(headline1.png);
width: 200px;
height: 100px;
}
h1 span{
visibility: hidden;
}
- 基本上和 display:none; 一樣,只是有佔空間
text-indent: -9999px
<h1>Headline 1</h1>
h1{
background: url(headline1.png);
width: 200px;
height: 100px;
white-space: nowrap; /* 設為不換行,使內容集中在一行 */
text-indent: -9999px;
}
text-indent: 100%;
<h1>Headline 1</h1>
h1{
background: url(headline1.png);
width: 200px;
height: 100px;
white-space: nowrap; /* 設為不換行,使內容集中在一行 */
text-indent: 100%;
overflow: hidden;
}