How to highlight spaces in a tag? (CSS only) -


i have tag

<span class="block" style="width:12px;height:17px">&nbsp;tttt&nbsp;ttt&nbsp;ttttt</span> 

i want highlight &nbsp;. 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;">&nbsp;</span>tttt<span style="background-color:#f00;">&nbsp;</span>ttt&nbsp;ttttt</span> 

put   within span

<span style="background-color:#f00;">&nbsp;</span> 

Comments

Popular posts from this blog

database - VFP Grid + SQL server 2008 - grid not showing correctly -

jquery - Set jPicker field to empty value -

.htaccess - htaccess convert request to clean url and add slash at the end of the url -