Page title CSS style

css

Solution

No we cant style it. For some information you can read W3C documentation about the title tag. It says:

The title is not part of the text of the document, but is a property of the whole document. It may not contain anchors, paragraph marks, or highlighting. The title may be used to identify the node in a history list, to label the window displaying the node, etc. It is not normally displayed in the text of a document itself. Contrast titles with headings . The title should ideally be less than 64 characters in length. That is, many applications will display document titles in window titles, menus, etc where there is only limited room. Whilst there is no limit on the length of a title (as it may be automatically generated from other data), information providers are warned that it may be truncated if long.

Problem

Is it possible to change title font style? I want to have my page title with `font-variant: small-caps;`

Original source

Related problems