css 隐藏文字(现代解决方案)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 隐藏文字(现代解决方案)相关的知识,希望对你有一定的参考价值。

<h1 class="hide-text show-image">Hide this text better!</h1>

<!-- 
See more at: https://www.appnovation.com/blog/modern-approach-css-image-replacement#sthash.3UP4NRSo.dpuf 
-->
.show-image {
  width: 40px;
  height: 40px;
  background: url(../images/my-title-image.png);
}

.hide-text {
  text-indent: 100%; /* get out of the window */
  white-space: nowrap; /* don't come back in */
  overflow: hidden; /* no really, don't come back in */
}
/* 
See more at: https://www.appnovation.com/blog/modern-approach-css-image-replacement#sthash.3UP4NRSo.dpuf 
*/

以上是关于css 隐藏文字(现代解决方案)的主要内容,如果未能解决你的问题,请参考以下文章

CSS如何隐藏td里面超出的文字?

隐藏文字的CSS方法

html js 或者css怎么做到隐藏滚动条,但是依旧可以滚动?

CSS技巧: CSS隐藏文字的方法(CSS text-indent: -9999px;)

css隐藏文字的小技巧

CSS 在输入上隐藏文字[type = submit]