XHTML tags have a closing tag

XHTML tags have a closing tag
<br />Original link: http://www.dudo.org/article.asp?id=253
There is a standard in the XHTML specification that "each XHTML tag has a closing tag". For elements in HTML that do not have an end tag, add a "/" before the end to close the tag. For example, the original writing method of the <img> tag in HTML is:
<img src="..." alt="...">
In XHTML, you should add a "/" before the ">" to close the tag. In order to prevent some old browsers from not recognizing this writing method, you should add a space before the "/" (HTML compatibility standard):
<img src="..." alt="..." />
This seems to mean that adding a "/" to the opening tag will close the tag. Especially for labels in the space, it seems to be more concise to use this method. For example,
<div class="clear"></div>
This is a piece of code that is often used in clearing floats (closing floating elements). Then it seems that it can be written as:
<div class="clear" />
Yes, the <div> element can be empty, and there is nothing wrong with writing it this way, but what consequences will arise if we use similar writing methods for other tags? To import an external JavaScript file into the <head>, we usually write:
<script type="text/javascript" src="..." language="javascript"></script>
Since there is no empty content, can we write
<script type="text/javascript" src="..." language="javascript" />
We found that this way of writing either does not work or results in errors in the browser. In most cases, the browser will think that the tag is not closed and mistakenly recognize that all content after <script> is Javascript code, which will cause an error. For example,
<textarea id="tt" cols="10" rows="8" />
If you run this code in a browser, you will find that starting from <textarea>, all the XHTML codes after that will be treated as the content of the text box and appear in the text box.
It seems that the paired tags that already exist in HTML4.0 must use the existing end tags in XHTML. So why is <div> okay? In fact, <div> is not allowed either, it’s just that <div> is not displayed so clearly in the browser. Writing methods such as <span /> are even more incorrect. First of all, <span> itself has a closing tag </span>. In addition, the content of the <span> tag cannot be blank (even pure spaces are not allowed). That is to say, except for tags such as <img>, <hr>, <link>, and <br>, which can be closed with “/”, other elements must use </...>, otherwise unexpected problems will occur.

<<:  How to install tomcat in docker and deploy the Springboot project war package

>>:  How to solve the problem that Seata cannot use MySQL 8 version

Recommend

A brief discussion on the underlying principle of mysql join

Table of contents join algorithm The difference b...

Example of how to exit the loop in Array.forEach in js

Table of contents forEach() Method How to jump ou...

The difference between html, xhtml and xml

Development Trends: html (Hypertext Markup Languag...

Detailed explanation of Linux system directories sys, tmp, usr, var!

The growth path from a Linux novice to a Linux ma...

Linux unlink function and how to delete files

1. unlink function For hard links, unlink is used...

Websocket+Vuex implements a real-time chat software

Table of contents Preface 1. The effect is as sho...

Design theory: people-oriented design concept

<br />When thoughts were divided into East a...

mysql5.7.21 utf8 encoding problem and solution in Mac environment

1. Goal: Change the value of character_set_server...

Advantages of INSERT INTO SET in MySQL

Insert data into mysql database. Previously commo...

MySQL query optimization: a table optimization solution for 1 million data

1. Query speed of two query engines (myIsam engin...

Summary of problems encountered in the implementation of Vue plug-ins

Table of contents Scene Introduction Plugin Imple...

Code for aligning form checkbox and radio text

Alignment issues like type="radio" and t...

How to set underline in HTML? How to underline text in HTML

Underlining in HTML used to be a matter of enclos...

Docker+selenium method to realize automatic health reporting

This article takes the health reporting system of...