html dir tag is used to define a directory list. In HTML4.01, the dir element is deprecated. In XHTML 1.0 Strict DTD, the dir element is not supported.
#html How to use dir tag?
Function: Define directory list.
Note: In HTML 4.01, the dir element is deprecated. In XHTML 1.0 Strict DTD, the dir element is not supported.
Note: All major browsers support the
html dir tag example
<html> <body> <dir> <li>html</li> <li>xhtml</li> <li>css</li> </dir> </body> </html>
Effect:
The above is the detailed content of How to use html dir tag. For more information, please follow other related articles on the PHP Chinese website!