Time to live of attributes - Need an explanation | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
0

Time to live of attributes - Need an explanation

using the example from course <html> <body> <p align="center">text a<br /> <hr width="10%" align="right" />text b </p> </body> </html> Why is "a" centered and "b" not; they are both in the same paragraph (with the same attribute). for hr I can understand that the attribute center is overwritten, but afterwards closed again

17th Feb 2017, 7:13 PM
nyx215
nyx215 - avatar
1 Respuesta
+ 1
Because <hr> elements are not supposed to be inside a <p> element, browsers considers that it's not a valid code and try to correct it as: <p align="center">text a<br></p> <hr width="10%" align="right"> <p>text b</p> ... 'losing' attributes of 'first' paragraph ^^ ( logical: for the browser, there's one ending </p> missing related to the <p align="center">, and one <p> missing related to the orphan </p>, the <hr> between implicitly meaning that no relation exists between the two paragraphs ;) ) ( deprecated attributes otherwise, needed to be replaced with css styles )
17th Feb 2017, 8:11 PM
visph
visph - avatar