I have read that it is possible to create a string of before elements by creating a before pseudo element on the before pseudo element before it. What is the syntax for this?
For example something like this:
.divMain:before {
content: 'Number 1';
}
.divMain ::before:before {
content: 'Number 2';
}
and so on.