They told me several times not to select elements such as <nav>
and <body>
, and to use the class selector instead. For example, "the <nav>
not intended to be displayed / stylized, but it must explicitly separate the navigation section." But does this not strike a part of the goal of semantic elements?
Assuming that I have only one bullet navigation list, and I am making them horizontal by adding a background, etc., can you still select the nav element above the class?
<nav class="navigation"> <ul class="links"> <li><a href="">Shop</a></li> <li><a href="">Discounts</a></li> <li><a href="">Profile</a></li> <li><a href="">Blog</a></li> </ul> </nav>
And, if you are going to vote for me, please give an explanation, and not just assume that I can understand why you did it.
source share