The var html tag
Overview
The <var> HTML tag is known as a phrase tag, it is mainly used to style text. It is also mainly used when displaying computer programming code to highlight variables used in the code, although there are actually no restrictions where you can use this HTML tag. It works equally as well in table based layouts as well as CSS based ones. As with all phrase based HTML tags it can be used in situations where consistency between browsers is difficult to achieve in other ways. When text is put between the opening and closing <var> tag it is displayed as a variable text.
Basic Usage
<var>Some variable text in here</var>
Any text between the opening and closing tag will be displayed as a variable text.
Advance Usage
It is possible to style and add functionality to the <var> tag, this is done by adding an attribute to after the p in the opening <var> tag
Attributes allowed for the <var>tag include :-class, dir, id, lang, style and title.
In most cases class and id are used and its basic usage is shown below
<var id=”header”>Some variable text</var>
With all attributes there is a space after the initial p then the attribute name, then an equal’s sign and the identifier of the attribute in double quotes.
Both id and class attributes refer to CSS styling of the element and is either stored in the <head> of the webpage on in an external file.
With id this usually refers to a single instance on a page where as class usually refers to a repeating element on a page, it is for this reason for the <var> tag may use either the id or class as an attribute.
The attribute style allows you to include css style information for a single <var> tag.
The dir attribute allows for left reading and right reading text, lang allows you to specify a language for the tag and title allows you to include extra information for a tag.
It is possible to attach scripts to tags, as well adding functionality to a webpage, these scripts tend to be written in JavaScript and therefore outside the scope of this document
Examples
<var>Some variable text</var> – basic usage example.
<var id=”header”>Some variable text</var> – variable text which is styled by the id header.
<var class=”header”> Some variable text </var> – variable text which is styled by the class header.
<var id =”header” class=”header”> Some variable text </var> – variable text which is styled by the class header and the id header.
<var style=”color:#F00;”>Some variable text</var> – variable text which has a custom colour of red.
<var dir=”rtl”>Some variable text</var> – variable text where the text reads from right to left.
<var lang=”uk”>Some variable text</var> – variable text where the language has been tagged as UK.
<var title=”title”>Some variable text</var> – variable text where the tag has been titled title.
Final Thoughts
Touching on just the surface of the <var> HTML tag it is easy to see how versatile it is. To take full advantage of it an understanding of CSS is an advantage.