英[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標(biāo)簽中的文字會比<small>正常顯示的文字小一號</small></span> </body> </html>
Run instance?
Click the "Run instance" button to view the online instance