Hi! First of all thanks for your hard work on this awesome library 🙌
I'm trying to add styles to an ::after pseudo-element, but I can't make it work.
I have set up a demo in Ellie of what I'm trying to achieve:
In the demo you can find two different lists, one styled with plain CSS and the other using elm-css:
As you can see, I'm adding a separator between the list elements using the pseudo-element after and setting its content to |.
I have tried to replicate the same with elm-css with no luck:
Hi! First of all thanks for your hard work on this awesome library 🙌 I'm trying to add styles to an
::after
pseudo-element, but I can't make it work. I have set up a demo in Ellie of what I'm trying to achieve:https://ellie-app.com/4RL6hKGYpjJa1
In the demo you can find two different lists, one styled with plain
CSS
and the other usingelm-css
:As you can see, I'm adding a separator between the list elements using the pseudo-element
after
and setting itscontent
to|
. I have tried to replicate the same withelm-css
with no luck:In fact, using chrome's inspector, there are no
::after
elements at all:Whereas in the plain CSS version there are:
Is there anything I'm doing wrong? Thanks in advance!