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?

Click to Copy with Toast and No Alert Pop Up (thanks chatGPT and Sam Altman)

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