Hacker News new | ask | show | jobs
by rasso 170 days ago
This is how you can set default styles for all your custom elements:

    :where(:not(:defined)) {
         display: block;
    }
1 comments

Amazing, I was literally just trying to see if I could figure out how to do this. Thanks!