HTML hr noshade Attribute
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML <hr> noshade Attribute

❮ HTML <hr> tag

Example

A noshaded horizontal line:

<hr noshade>
Try it Yourself »

Definition and Usage

The noshade attribute is a boolean attribute.

When present, it specifies that a horizontal line should render in one solid color (noshaded), instead of a shaded color.


Browser Support

Attribute
noshade Yes Yes Yes Yes Yes

The noshade attribute is deprecated, but still supported in all major browsers.


Compatibility Notes

The noshade attribute of <hr> is not supported in HTML5. Use CSS instead.

CSS syntax for Internet Explorer: <hr style="height:2px;color:gray">

CSS syntax for Firefox, Opera, Chrome, and Safari: <hr style="height:2px;border-width:0;background-color:gray">

For cross-browser syntax, use both: <hr style="height:2px;border-width:0;color:gray;background-color:gray">

CSS Example: A noshaded <hr>

In our CSS tutorial you can find more details about the color and background-color properties.


Differences Between HTML and XHTML

In XHTML, attribute minimization is forbidden, and the noshade attribute must be defined as <hr noshade="noshade" />.


Syntax

<hr noshade>

❮ HTML <hr> tag