I have honestly looked at like all of the similar questions but they all have the same code as me even after they fix it , so I’m not sure what I am doing wrong. All help will be great! thanks!
Your code so far
<!-- file: index.html -->
/* file: styles.css */
/* User Editable Region */
li a {
color: #003366:
}
/* User Editable Region */
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36
So technically if you were trying to select (li) and (a) elements you would use this code in css:
li, a {}
But here it is asking you to “Change the font color of all the anchor elements within the list elements”, this is where CSS SELECTORS come into play like you used in a previous step with
nav > ul > li {}
You would just need to apply the same concept because you are trying to SPECIFICALLY select the element you want to style.
thanks for the recommendations but i still cannot figure out how to do it, could you give me a little bit more explanation, obviously without giving the answer.