• Resolved fellter2

    (@fellter2)


    I want to apply some css to all elements that are text – so p-tags, all headings, links, menus, etc. I am use to simply using html, body{…} and all the font-based elements inheriting from that, but it seems like Blocksy is declaring really every element on its own like em,titles, mea, descriptions etc…is there any selector that can cover all at once? I tried html >* but that did not work…

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @fellter2

    You can actually use an asterisk for modifying everything at once. Something like —

    * {
     color: red;
    }

    Though, I’m not sure why you’d like to do this, but this should work.

    Thanks.

    Thread Starter fellter2

    (@fellter2)

    Thank you! I need to set font-weight and family the same for everything, that is why!

    Perfect! Glad it’s working fine. ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Selectors’ is closed to new replies.