Html – Getting multiple tags from a specific parent to be stylized the quick way
I'm trying to get all bold texts from an anchor tags to have the same style. I tried with : a > h1,h2,h3,h4,h5,h6,strong,b,d1,d2,d3,d4,d5,d6{ font-weight:var(--medium); } But the style is only applied on <h1>. So I tried with : a>h1,a>h2,a>h3...{ }…