Home >Web Front-end >HTML Tutorial >How to use html big tag

How to use html big tag

藏色散人
藏色散人Original
2019-05-25 16:23:272868browse

html The big tag is used to make larger text, presenting a large font effect. When the browser displays the text contained between the tag and its corresponding tag, its font size is larger than the surrounding text. The text should be one size larger.

How to use html big tag

#html What does the big tag mean? How to use html big tag?

Function: Make larger text and present large font effect.

Note:

Using the tag makes it easy to enlarge the font size. It couldn't be simpler: browsers display the text contained between the tag and its corresponding tag as one size larger than the surrounding text.

However, if the text is already in the largest font size, the tag will have no effect. Even better, you can nest tags to make the text larger. Each 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 tag, because browsers are always very lenient in trying to understand various tags. For those browsers that do not support the tag, it This is often thought of as a boldface label.

Note:

All browsers support the tag.

html big tag example

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

Effect:

How to use html big tag

The above is the detailed content of How to use html big tag. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:What is bootstrap-vueNext article:What is bootstrap-vue

Related articles

See more