隐藏css的文本缩进技巧
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了隐藏css的文本缩进技巧相关的知识,希望对你有一定的参考价值。
Hiding text can be extremely useful to hide company logo. As logos are usually an image, you will want to use text indent to place it in a h1 tag for SEO (Search Engine Optimization). The technique we use is to hide the text far away off the screen, and apply a background image instead.
h1 { 2 text-indent:-9999px; 3 margin:0 auto; 4 width:400px; 5 height:100px; 6 background:transparent url("images/logo.jpg") no-repeat scroll; 7 }
以上是关于隐藏css的文本缩进技巧的主要内容,如果未能解决你的问题,请参考以下文章
css 隐藏文字。在不创建9999px框的情况下更好地处理文本缩进。