Open In App

HTML | <hr> size Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <hr> size Attribute is used to specify the height of the horizontal line in terms of pixels.

Syntax:

<hr size="pixels">

Attribute Values: It contains single value pixels which specify the height in terms of pixels.

Note: The <hr> size Attribute is not supported by HTML 5.

Example:




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


Output:

Supported Browsers: The browser supported by HTML <hr> size 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