英[bɪg] 美[bɪɡ]

adj. Big; important; (plan) huge; generous

adv. Largely; successfully; exaggeratedly; magnanimously

n.tycoon;big company

comparative: bigger superlative: biggest

html big tag syntax

html What does the big tag mean?

Function: Create larger text and present a large font effect.

Note: Using the <big> tag makes it easy to enlarge the font size. It couldn't be simpler: browsers display the text contained between a <big> tag and its corresponding </big> tag as one size larger than the surrounding text. However, if the text is already in the largest font size, the <big> tag will have no effect. Even better, you can nest <big> tags to make the text larger. Each <big> tag makes the font one size larger, up to the upper limit of size 7 text, as defined by the font model. But you still have to be careful when using the <big> tag, because browsers are always very lenient in trying to understand various tags. For those browsers that do not support the <big> tag, it will often regard it as bold. Font labels.

Note: All browsers support the <big> tag.

html big tag example

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <span>这是<big>放大的字体</big></span>
</body>
</html>

Run instance »

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