Lego2012
9/26/2016 - 9:59 PM

Hide Text (Modern Solution)

Hide Text (Modern Solution)

<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 
*/