There are HTML tags, such as <img />, <input /> and <button />, that need no ending tag (</img>, </input> and </button>). What is the term that describes this type of tags?
| |||||||||||||||||
feedback
|
|
This syntax has a variety of names depending on what language you are using. The best way to find out what it is called is to look at the specification for the specific language. HTML 4.x I can't find any mention of this syntax in the HTML 4.x specification. It is not valid syntax. HTML 5 In the HTML 5 specification the
XML According to the XML specification it is called an empty-element tag:
XHTML According to the XHTML specification it is called the minimized tag syntax for empty elements:
In general if you want to be precise I would recommend using the names as defined in the appropriate standard. Then if people aren't exactly sure what you mean they can look it up in the standard to find out. However if you don't want to use the name in the standard you are free to call it something else if you want. The important thing is that the people who communicate with you can understand you. I don't think anyone would misunderstand you if you used the term 'self-closing tag' for a tag in an XML document even if the standard officially calls it something else. Thanks to Alohci for the HTML 5 reference. | |||||
feedback
|
|
The term is self-closing. | |||||||||||
feedback
|
|
I know them as bachelor tags. | |||
|
feedback
|
|
There are paired and unpaired tags. Unpaired tags are opened and do not have to be closed. They stand alone.
| |||
|
feedback
|
|
HTML tags can be of two types. They are
Paired Tags: A tag is said to be a paired tag if the text is placed between a tag and its companion tag. In paired tags, the first tag is referred to as Opening Tag and the second tag is referred to as Closing Tag. Example:
Note: Here Unpaired Tags: An unpaired tag does not have a companion tag. Unpaired tags are also known as Singular or Stand-Alone Tags. Example : | |||
|
feedback
|
|
I've seen them referred to as singlet (Which is presumably a short form of single-tag) | |||
|
feedback
|
|
This sort of Element is an empty element (since it does not contain anything, it just may have attributes). That's the correct way according to the specification, AFAIK. (If the Element is not empty, the Element consists of the opening tag, the closing tag, and the content inbetween.) Those tags are also called "unpaired", "single", or "bachelor tags". The term "self-closing" I don't like because they don't close themselves any more than other tags, it's still you or your program that puts the "/>" in there. | ||||
|
feedback
|
|
I've called them self-closing, single tags and monotags, I don't know why I haven't adopted a single term though. | |||
|
feedback
|
|
Those tags are called "Standalone Tags". Standalone tags are having no closing tags in HTML But in XHTML they have to be self closed by adding forward slash before the closing angular bracket | |||
|
feedback
|