<big>: The Bigger Text element - HTML | MDN

Attributes

This element has no other attributes than the global attributes, common to all elements.

Examples

Here we see examples showing the use of <big> followed by an example showing how to accomplish the same results using modern CSS syntax instead.

Using big

This example uses the obsolete <big> element to increase the size of some text.

HTML

html

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

Result

Using CSS font-size

This example uses the CSS font-size property to increase the font size by one level.

CSS

css

.bigger {
  font-size: larger;
}

HTML

html

<p>
  This is the first sentence.
  <span class="bigger">This whole sentence is in bigger letters.</span>
</p>

Result

DOM interface

This element implements the HTMLElement interface.

Specifications

Specification
HTML
# big

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on by MDN contributors.