Home >Web Front-end >HTML Tutorial >What does the sub tag mean in html?
What does the sub tag in html mean?
Function: Define subscript text.
Note: The content contained in the b96cac025db4031319c29e1eb68f19d6 tag and its closing tag 270ea406e83044e5b95e23270c35ff95 will be displayed with half the height of the characters in the current text stream, but with the same font as the text in the current text stream. and font size are the same.
Note: Both the b96cac025db4031319c29e1eb68f19d6 tag and its corresponding 2cdea26b4c3988e37d674b56660962a7 tag are very useful in mathematical equations, scientific symbols, and chemical formulas.
html sub tag example
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> 这段文本包含 <sub>下标</sub> </body> </html>
The above is the detailed content of What does the sub tag mean in html?. For more information, please follow other related articles on the PHP Chinese website!