这是一种方法:
h1 { text-indent: -9999px; background-image: url(/the_img.png); height: 100px; width: 600px; white-space: nowrap; }h1 a { outline: none; }这是隐藏文本的另一种方式,同时避免了浏览器将创建的9999像素大框:
h1 { background-image: url(/the_img.png); height: 100px; width: 600px; text-indent: 100%; white-space: nowrap; overflow: hidden;}


