Fixed Adding HTML entities using CSS content #dev #it #asnwer
Fixed Adding HTML entities using CSS content #dev #it #asnwer
Adding HTML entities using CSS content
How do you use the CSS content property to add html entities?
I have a number of links which I make into a breadcrumb style list by adding an arrow before each.
<div class="breadcrumbs"> <a>One</a> <a>Two</a> <a>Three</a> </div>
Which has the following style applied to it:
.breadcrumbs a:before { content: '> '; }
The problem is that when the breadcrumb…
View On WordPress












