


How to use html sup and sub tags? Definition and usage examples of html sup tag and sub tag
本篇文章主要讲述的是html sup标签的定义和用法,还有html sup标签和sub标签的定义和使用方法实例。
html sup标签的定义和用法:
标签可定义上标文本。
包含在 标签和其结束标签 中的内容将会以当前文本流中字符高度的一半来显示,但是与当前文本流中文字的字体和字号都是一样的。
提示:这个标签在向文档添加脚注以及表示方程式中的指数值时非常有用。如果和 标签结合起来使用,就可以创建出很好的超链接脚注。
HTML 标签实例
上标文本:
<p>这个文本包含 <sup>上标</sup> 文本。</p>
字体文本标签讲解标签
字体标签定义字体的显示效果,有些标签它有独自的语义:
<sup>感谢您对php中文网的支持</sup>
语义:定义在浏览器显示上标文本,一般用于代数方程式的书写。
如代数方乘:X2
实例原代码:
字体文本标签讲解标签 字体文本标签讲解标签
字体标签定义字体的显示效果,有些标签它有独自的语义。
标签
<sup>感谢您对php中文网的支持</sup>
语义:定义在浏览器显示上标文本,一般用于代数方程式的书写。
如代数方乘:X2
HTML 上标、下标如何并列显示
要想使得上标和下标能够并列显示,我们可以通过 CSS 样式设置。
<!DOCTYPE html> <html> <head> <title>HTML 上标 下标并列显示</title> </head> <body> X<sup>2</sup><sub>3</sub> Y<sup>2</sup><sub style="margin:0 0 0 -5px;">3</sub> </body> </html>
运行效果:
html sup标签和sub标签的定义和用法:
标签可定义下标文本。 可定义上标文本。都属于行内元素,默认比当前字体稍小。
html sup标签的实例代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>html中的sub与sup标签</title> <style type="text/css"> * { font-size:12px; font-family:Tahoma} </style> </head> <body> <div> 这个标签是<sub>sub</sub> 这个标签是<sup>sup</sup> </div> </body> </html>
我们来看看html sub标签和sup标签的数学方程式这种效果怎么实现?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.php.cn"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>html中的sub与sup标签</title> <style type="text/css"> * { font-size:12px; font-family:Tahoma} </style> </head> <body> <div> x<sub>1</sub>+y<sub>2</sub><sup>3</sup>=15 </div> </body> </html>
本篇文章就到这了,还有一篇关于html sub标签的用法:欢迎大家点击阅读,有问题的同学可以在下面提问。
html中sub标签是什么?关于html sub标签的定义和使用方法介绍
浏览器支持
所有浏览器都支持 标签。
【小编的相关推荐】
html5 output标签是什么意思?html5 output标签的使用方法
html5 table标签的样式介绍(另附html5 table css居中的实例)
The above is the detailed content of How to use html sup and sub tags? Definition and usage examples of html sup tag and sub tag. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Guide to Table Border in HTML. Here we discuss multiple ways for defining table-border with examples of the Table Border in HTML.

Guide to HTML margin-left. Here we discuss a brief overview on HTML margin-left and its Examples along with its Code Implementation.

This is a guide to Nested Table in HTML. Here we discuss how to create a table within the table along with the respective examples.

Guide to HTML Table Layout. Here we discuss the Values of HTML Table Layout along with the examples and outputs n detail.

Guide to HTML Input Placeholder. Here we discuss the Examples of HTML Input Placeholder along with the codes and outputs.

Guide to Moving Text in HTML. Here we discuss an introduction, how marquee tag work with syntax and examples to implement.

Guide to the HTML Ordered List. Here we also discuss introduction of HTML Ordered list and types along with their example respectively

Guide to HTML onclick Button. Here we discuss their introduction, working, examples and onclick Event in various events respectively.
