I'm having problems with the pseudo-selectors like nth-of-type, anyone have a working syntax to get it do display div:nth-of-type(1)? I only get div nth-of-type(1) (notice the space and lack of colon).
Currently I'm just doing (keyword "div:nth-of-type(1)") to get it to work, but that seems like the wrong approach.
[(s/div (s/nth-of-type "1"))
{:background :red}]
Where s
is [garden.selectors :as s]