英[smɔ:l] 美[smɔl]

adj.Small; embarrassed; low-level, despicable; subtle, weak

adv.小地; Despicably

n.Small part, waist; trivial things; person of low status; short person

Comparative: smaller Superlative: smallest

html small tag syntax

Function: Presents a small font effect.

Note: The <small> tag is the same as its corresponding <big> tag, but it reduces the font size instead of enlarging it. If the enclosed font is already the smallest size supported by the font model, the <small> tag will have no effect. Like the <big> tag, the <small> tag can be nested to continuously shrink text. Each <small> tag makes the text one size smaller, until the lower limit of one size is reached.

Note: All browsers support the <small> tag.

html small tag example

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<span>这是 <small>小一号</small>的字体</span>
</body>
</html>

Run Instance»

Click the "Run Instance" button to view the online instance

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<span>small标签中的文字会比<small>正常显示的文字小一号</small></span>
</body>
</html>

Run instance»

Click the "Run instance" button to view the online instance