WorthyD
9/29/2014 - 3:53 PM

Collection of various CSS Snippets I frequently forget about.

Collection of various CSS Snippets I frequently forget about.

/*Image Text Replacement*/
.hide-text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.Prevent-Strings-From-Breaking-Layout{
  /*IE doesn't like inline elms for this.*/
  word-wrap: break-word; 
}