HTML <big> 标签用于将文本字体大小增加一级,比文档的基本字体大小或周围文本大小大一级,例如小到中、中到大等。
<big>内容... </big>
以下是关于 <big> 标签的一些规范
展示 | 排队 |
开始标签/结束标签 | 开始和结束标签 |
用法 | 字体和网页排版 |
<!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>
输出:
<!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 中的全局属性。
元素 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
<big> | Yes | Yes | Yes | Yes | Yes |
© Copyright 2011-2021 www.rocschool.com. All rights reserved. Developed by RocSchool. Powered by qibosoft X1.0 Code. 琼ICP备2021004297号-1