HTML-CSS Highlighting ALL of the TEXT Including the Whitespace and NOT the Entire Cell

Why? Say you want to display a rating - four stars, but how do you indicate that the rating is not the highest? Exactly, so you want that whitespace at the end!


<td><span>**** </span></td>

And the CSS :

span {
  background-color : yellow;
  white-space : pre;
  font-family : "courier";
}

Comments

Popular posts from this blog

How Should You Put Your Text in a Box?

Tricks : Getting Image URL When Page Doesn't Want You To!

A Web Interface to Try Dual Key Caesar Cipher Encryption and Decryption