Disegnare il tag HTML in un documento Web

0

è buona pratica di codifica aggiungere uno stile al tag <html> di un documento web?

perché non dovresti applicare lo stile al tag <html> di un documento web?

Chiedo questo a causa di questa risposta su una domanda StackOverflow.
Personalmente non penso che questa sia una buona pratica di programmazione.

c'è uno standard WC3 che dice che è buono / cattivo?

    
posta Malachi 07.11.2013 - 22:32
fonte

1 risposta

1

C'è una questione di incongruenze tra i browser tra il tag <html> e il tag <div> , con <div> con un comportamento più coerente. w3c consiglia di modificare il tag <body> anziché il tag <html> . Molto di questo ha di nuovo a che fare con il comportamento del browser moderno :

Many web developers do not understand the difference between applying style to the body element versus the html element. Most of the time these authors will apply style only to the body element; when that's not sufficient, they'll spam all sorts of styles on both html and body until the page happens to look correct.

The confusion is understandable. In the beginning, both were treated similarly, with (now-deprecated) attributes like bgcolor being applied to the body tag, affecting the whole page.

This article attempts to enlighten you, Web Developer, to fully grok how these two elements are used in modern web browsers.

    
risposta data 07.11.2013 - 22:40
fonte

Leggi altre domande sui tag