deleted Obsolete
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.
The HTML Big Element (<big>
) 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.
Usage note: As it was purely presentational, this element has been removed in HTML5 and shouldn't be used anymore. Instead web developers should use CSS properties.
This element has no other attributes than the global attributes, common to all elements.
<p> This is the first sentence. <big>This whole sentence is in bigger letters.</big> </p>
<p> This is the first sentence. <span style="font-size:1.2em">This whole sentence is in bigger letters.</span> </p>
This is the first sentence. This whole sentence is in bigger letters.
This element implements the HTMLElement
interface.
HTMLSpanElement
interface for this element.Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Feature | Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | ? | No support | No support |
<small>
, <font>
, <style>
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/big