Hola a todos!
Tengo esta duda, a ver si alguien me la puede aclarar:
¿Hay alguna diferencia entre escribir una regla para body y otra para html, body?
Gracias!
| ||||
Respuesta: Body y html, body. Sí, una importante diferencia: que una regla afecte o no al html puede ser determinante. Recuerda que html es el elemento básico, el nivel 1 de la página, y body es el nivel 2 (figuradamente). Haz esta prueba: primero pon esto Cita: y ahora añade html, delante de body:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es-es"> <head> <title>html, body</title> <style type="text/css"> body {height: 100%; width: 100%;} #uno {height: 100%; width: 100%; background: blue;} </style> </head> <body> <div id="uno"> </div> </body> </html> Cita: ¿Qué ha ocurrido? <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es-es"> <head> <title>html, body</title> <style type="text/css"> html, body {height: 100%; width: 100%;} #uno {height: 100%; width: 100%; background: blue;} </style> </head> <body> <div id="uno"> </div> </body> </html>
__________________ Visita mi nueva web idplus.org |
| ||||
Respuesta: Body y html, body. Pues lo cierto es que no. Quizá en alguno de los manuales que hay por las FAQ o por ahí, o en internet buscando algo como "css+elemento html".
__________________ Visita mi nueva web idplus.org |