HTML | <img> border Attribute

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>w3wiki</h1>
  
    <h2>HTML img border Attribute</h2>
  
    <img src=
"https://media.w3wiki.net/wp-content/uploads/20190506164011/logo3.png" 
         alt="w3wiki 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

Contact Us