本文概述
HTML <big>标签用于将文本字体大小增加到文档基本字体大小或周围文本大小的一级, 例如小到中, 中到大等。
注:HTML5不再支持HTML <big>标记, 因此你可以使用CSS来增加字体大小。
句法
<big>Content... </big>
以下是有关<big>标签的一些规范
Display | Inline |
开始日期/结束日期 | 开始标签和结束标签 |
Usage | 字体和网页排版 |
例
<!DOCTYPE html>
<html>
<head>
<title>Big tag</title>
</head>
<body>
<h2>Example of HTML big tag</h2>
<p style="color:#ff4040">This is paragraph with normal font size</p>
<p style="color:#00bfff">
<big>This is paragraph with font size greater than the previous content</big>
</p>
</body>
</html>
立即测试
输出:
使用CSS属性增加字体大小
<!DOCTYPE html>
<html>
<head>
<style>
.fsize{
font-size: 18px;
color: red;
}
</style>
</head>
<body>
<h2>Example to change font size using CSS</h2>
<p>The paragraph content with default font size</p>
<p class="fsize">The paragraph content with CSS to increase font size</p>
</body>
</html>
立即测试
输出:
属性
特定于标签的属性:
<big>元素不包含任何特定属性。
全局属性
<big>元素支持HTML中的Global Attribute。
支持的浏览器
Element | Chrome | IE | Firefox | Opera | Safari |
<big> | Yes | Yes | Yes | Yes | Yes |