What's the difference between the lang attribute and the <meta http-equiv="Content-Language" content="en-US"> tag?
Asked Answered
N

3

24

I was wondering what's the significance of using the "lang" attribute and how that differs from using the meta "Content-Language" tag?

Consider the following code:

<html lang="en">
    <head>
        <meta http-equiv="Content-Language" content="en-US">
    </head>...

My assumption is that the browser is reading the meta tag's value, but the DOM is concerned with the "lang" attribute. Is this correct? Are there any nuances I'm unaware of?

Nadeau answered 14/12, 2010 at 6:36 Comment(0)
S
19

The lang attribute (on the HTML element) specifies the language for the document (unless overridden with another lang attribute which can change the language for a section of the document).

The Content-Language HTTP header specifies the language of the intended audience. This is not the same as the language the document is actually written in. For example, part of a French language course could consist of a page written in French, but Content-Language would be en as it was intended for English speakers learning French.

From the spec:

The Content-Language entity-header field describes the natural language(s) of the intended audience for the enclosed entity. Note that this might not be equivalent to all the languages used within the entity-body.

Meta HTTP-equiv is the poor man's HTTP header. It has all the meaning of the real HTTP header, but less respect (and support).

As a rule of thumb, Content-Language is of more interest to search engines and the lang attribute is of more interest to screen readers.

Sway answered 14/12, 2010 at 6:50 Comment(4)
Curiously, I just discovered the http-equiv for content-language to have more browser support than the proper HTTP header! Only Firefox gets this right: artdent.homelinux.net/~josh/language.htmlBarker
I think I'd class that as a bug in Firefox. It shouldn't take the Content-Language as specifying the document language.Sway
According to HTML4 (and 5), it should.Barker
I can only find reference to it around white space handling, but it does imply that Content-Language should be used to determine the document language. This is one of those unclear and vaguely contradictory parts of the specifications that can cause problems. Easily avoided though — always use the lang attribute and the issue goes away.Sway
D
13

HTML5 update: meta http-equiv="Content-Language" is obsolete, and the lang attribute can be used on all elements.

Demirelief answered 1/2, 2014 at 12:17 Comment(0)
B
4

They mean the same thing — setting the language of the content in question — however the lang attribute has a higher precedence. See 8.1.2 Inheritance of language codes. They handle different use cases — the lang attribute can be set <i lang=la>exempla gratis</i> on an individual element, while the Content-Language header can be configured globally by the server to apply to a whole set of documents.

Your examples show two equivalent ways to set the language of the html element, but since the lang attribute takes precedence, the value will be "en" and not "en-US".

Barker answered 14/12, 2010 at 6:40 Comment(2)
Even though both answers are helpful, I think this answer is the most succinct, so I will award this with the green checkmark. Thanks to both jleedev and David Dorward!Nadeau
They don't mean the same thing, Quentin's answer explains the differenceJoellenjoelly

© 2022 - 2024 — McMap. All rights reserved.