HTML: Semantics of “title” Element Content
Post from February 26, 2007 (↻ March 21, 2021), filed under Web Development. (Tweet this?)
This post is outdated.
I already proposed this in October 2005 but see the need to bring it up again: It would be useful to allow other elements within the title
of an HTML document. Why? You otherwise cannot mark abbreviations and other flow content elements, which means their meaning gets lost. For example, you cannot write
<title><abbr>HTML</abbr> document title</title>
(whose markup wouldn’t need to be rendered), but are required to use
<title>HTML document title</title>
Therefore, there’s no way to tell that “HTML” is an abbreviation here.
The set of elements we could allow within title
’s limited. HTML probably benefits from enabling
abbr
,del
,ins
, and eventuallyem
andstrong
.
I’ll suggest this again to the respective working groups, despite the original responses. And I’m looking forward to your thoughts.
Update (February 27, 2007)
Lachlan Hunt writes (via a W3C mailing list):
For compatibility reasons in HTML,
title
cannot contain elements because of the way it is parsed. It would be possible to do so in XHTML, but then that would be another incompatibility between the 2 languages and there is also limited usefulness in doing so anyway, since many of the use cases for title are plain text. e.g. the window’s title bar, bookmarks, search results, etc.
While enabling other elements within title
means a compatibility issue, I currently do not believe that you cannot ignore them under certain circumstances, like in the title bar. [What am I missing?]
About Me

I’m Jens Oliver Meiert, and I’m a web developer (engineering manager) and author. I love trying things, sometimes including philosophy, art, and adventure. Here on meiert.com I share some of my views and experiences.
If you have questions or suggestions about what I write, please leave a comment (if available) or a message.
Comments (Closed)
-
On February 28, 2007, 15:33 CET, Herbert Schiemann said:
Since the title element is not part of the body I do not see much use in allowing other elements within the title element in HTML. Representational elements like em and strong are not needed in the title element, may-be semantical elements.
On the other hand I cannot see a convincing reason why not to allow any “inline” elements in the title element in XHTML -
On March 1, 2007, 13:16 CET, Jens Oliver Meiert said:
Well, there are several use cases, not only for abbreviations and stuff, but also to indicate changes in language. Thus, this limitation becomes even more interesting. It’s not just a spec inconsistency.
By the way, please consider (and participate in) the ongoing discussion on the W3C www-html mailing list (February and March archives).
-
On March 2, 2007, 14:33 CET, Robin Hodson said:
Although (trivally), you things like
<title lang="fr">J’ai eu un chat</title>
So all is not completely lost.Search engines are quite good at picking up context, anyway.
If you’re really worried about it, surely XHTML is the way to go, anyway?
Read More
Have a look at the most popular posts, possibly including:

Perhaps my most relevant book: CSS Optimization Basics (2018). Writing CSS is a craft. As craftspeople we strive to write high quality CSS. In CSS Optimization Basics I lay out some of the most important aspects of such CSS. Available at Amazon, Google Play Books, and Leanpub.
Looking for a way to comment? Comments have been disabled, unfortunately.