Why this? XD i dont have a best title | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

Why this? XD i dont have a best title

Por quĆ© no puedo cambiar el color de texto, quitar decoraciĆ³n, etc. Desde "nav ul li" o (id)"secciones" y tan solo puedo editarlo desde "*"? Si es por la jerarquĆ­a, no podrĆ­a modificarse desde un id? //Traducido Why can't I change the text color, remove decoration, etc. From "nav ul li" or (id) "sections" and I can only edit it from "*"? If it's because of the hierarchy, couldn't it be modified from an id? https://code.sololearn.com/WUrVmmbC7DGx/?ref=app https://code.sololearn.com/WUrVmmbC7DGx/?ref=app

14th Jul 2020, 3:33 PM
Sam VƔsquez
Sam VƔsquez - avatar
2 Respostas
+ 2
You did all thing in right way but you missed one thing there is no text decoration over the li it's over the anchor tag so add this to your css nav ul li a{ text-decoration:none; }
14th Jul 2020, 4:07 PM
Ayush Kumar
Ayush Kumar - avatar
0
hi Sam VƔsquez , i made some alter based on your codes. on html: <header> <div id="titulo"> <h1>Prueba.com</h1> </div> <nav> <div id="secciones"> <a href="#">Hogar</a> <a href="#">Destacados</a> <a href="#">Etiquetas</a> <a href="#">Buscar</a> </div> </nav> </header> ------------------ on css: #secciones{ display: flex; justify-content: space-around; background-color: grey; text-align: center; } it doesn't even need to use the ul and li tag.
16th Jul 2020, 1:30 AM
sobadrdb