Just wondering if it’s possible somehow to make the CSS content property insert html code instead string on :before or :after an element like: .header:before{ content: '<a href="#top">Back</a>'; }...
I am trying to use the :after CSS pseudo-element on an input field, but it does not work. If I use it with a span, it works OK. <style...
How do you use the CSS content property to add HTML entities? Using something like this just prints to the screen instead of the non-breaking space: .breadcrumbs a:before...