I want to put a circle/dot ::before
an element
•
•
nothing I am doing is visible!
.line ::before{
content:'•';
}
and
.line ::before{
content:'•';
}
(I see nothing)
I can't get this to work even with just text
I know content only accepts text, but I still don't see anything if I do:
.line ::before{
content:'xxx';
}
How do I get css ::before
to show up?
(note: the css rule is in the default style sheet on page load so it should be applying to any new element ...)
How do I display this dot in ::before
?