How to highlight spaces in a tag? (CSS only) -
i have tag
<span class="block" style="width:12px;height:17px"> tttt ttt ttttt</span>
i want highlight
. how can using css?
well there no such way select space, if reason want then, can try this:
<span class="block" style="width:12px;height:17px"><span style="background-color:#f00;"> </span>tttt<span style="background-color:#f00;"> </span>ttt ttttt</span>
put within span
<span style="background-color:#f00;"> </span>
Comments
Post a Comment