HTML CSS examples for HTML Tag:small
The small element marks fine print for disclaimers and clarifications.
The small Element summary
Item | Value |
---|---|
Element | small |
Local Attributes | None |
Tag Style | Start and end tag required |
New in HTML5 | No |
Changes in HTML5 | HTML5 small element has the semantic meaning |
Style Convention
small {
font-size: smaller;
}
The following table shows the small element in use.
<!DOCTYPE html> <html> <head> <title>Example</title> </head> <body> This is a <small>test</small> . <!-- ww w . j ava 2s .co m--> </body> </html>