Open In App

HTML | <hr> width Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <hr> width attribute is used to specify the width of the horizontal line in terms of pixels or percent.

Syntax:

<hr width="pixels|%">

Attribute Values:

  • pixels: It sets the width of <hr> attribute in terms of pixels.
  • %: It sets the width of <hr> attribute in terms of percentage (%).

Note: The <hr> width attribute is not supported by HTML 5.

Example:




<!DOCTYPE html>
<html>
  
<head>
    <title>
        HTML hr width Attribute
    </title>
</head>
  
<body style="text-align:center;">
    <h1>GeeksforGeeks</h1>
    <hr width="500px;">
    <p>Computer science portal</p>
    <hr width="70%">
</body>
  
</html>


Output:

Supported Browsers: The browser supported by HTML <hr> width attribute are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Safari
  • Opera

Last Updated : 28 May, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads