Visit Mozilla.org

HTML:Element:big

From MDC

Contents

[edit] HTML Big Element

<big>...</big> - The HTML Big element makes the text font size one size bigger (for example, from small to medium, or from large to x-large) up to the browser's maximum font size.

[edit] Example 1

   <p>
       This is the first sentence. <big>This whole 
       sentence is in big letters.</big>
   </p>

[edit] Result

This is the first sentence. This whole sentence is in big letters.

[edit] Example 2 (CSS alternative)

   <p>
       This is the first sentence. <span style="font-size:1.2em">This whole 
       sentence is in big letters.</span>
   </p>

[edit] Result

This is the first sentence. This whole sentence is in big letters.

[edit] Notes

Although this element was not deprecated in the HTML 4.01 specification, its use is discouraged in favor of style sheets.

[edit] See also


HTML Elements
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
(Quick Links: HTML Element Cross Reference, HTML Category)