隐藏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.
  1. h1 {
  2. 2
  3. text-indent:-9999px;
  4. 3
  5. margin:0 auto;
  6. 4
  7. width:400px;
  8. 5
  9. height:100px;
  10. 6
  11. background:transparent url("images/logo.jpg") no-repeat scroll;
  12. 7
  13. }

以上是关于隐藏css的文本缩进技巧的主要内容,如果未能解决你的问题,请参考以下文章

css 隐藏文字。在不创建9999px框的情况下更好地处理文本缩进。

css文本之蛇

隐藏文字的CSS方法

26个jQuery代码片段使用技巧

CSS CSS - 用徽标替换标题文本 - 文本缩进 - 文本缩进

实现CSS文本缩进?