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!
And the CSS :
span {
background-color : yellow;
white-space : pre;
font-family : "courier";
}
Comments
Post a Comment