transparent text css

CSS
/* Answer to: "transparent text css" */

/*
  Keep in mind, this will make your text almost impossible to read.

  There's multiple ways to make your text transparent, below are a
  bunch of examples of each way you can make your text transparent.
  Note: Some of the examples below will also hide the element as
  well.
*/

div {
  color: transparent;
}

div {
  visiblity: hidden;
}

div {
  display: none;
}

div {
  opacity: 0;
}

div {
  position: absolute;
  z-index: -1;
}
Source

Also in CSS: