As a newbie I am still confused and struggling about the CSS when using aria-label. My HTML for the primary menu reads:
<nav aria-label=’primary’>
<button><a href="index.html">Home</a></button>
so what coding do I use in CSS to show the font height and the background color etc? Is it
nav [aria-label='primary'] { font-size="24"px; background-color="green"; }
or
nav [aria-label='primary'] a { font-size="24"px; background-color="green"; }
My secondary menu on the same page directs\links users to specific areas of the page. I am a newbie at this and am trying to build up my knowledge I am grateful for advice from more experienced members.