HTML Tag Reference - HTML tag <small>








The <small> tag marks smaller text.

Browser compatibility

<small> Yes Yes Yes Yes Yes

What's new in HTML5

None.

Global Attributes

The <small> tag supports the Global Attributes in HTML.

Event Attributes

The <small> tag supports the Event Attributes in HTML.

Default CSS Settings

small { 
    font-size: smaller;
}




Example

<!DOCTYPE html>
<html>
<body>

<p><small>small</small></p>

</body>
</html>

Click to view the demo