Open In App

HTML | <img> border Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

The <img> border attribute is used to specify the border width around the image. The default value of <img> border attribute is 0.
It is not supported by HTML 5. Use CSS instead of this attribute.

Syntax:

<img border="pixels">

Attribute Values: It contains single value pixels which specify the width of the border.

Example:




<!DOCTYPE html>
<html>
  
<head>
    <title>
        HTML img border Attribute
    </title>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
  
    <h2>HTML img border Attribute</h2>
  
    <img src=
         alt="GeeksforGeeks logo" 
         border="5">
</body>
  
</html>


Output:

Supported Browsers: The browser supported by HTML <img> border attribute are listed below:

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

Last Updated : 21 Jan, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads