Open In App

HTML | <img> height Attribute

Last Updated : 22 Jul, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The <img> height attribute is used to specify the height of the image in pixels. 

Syntax:

<img height="pixels">

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

Example: 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML img height Attribute
    </title>
</head>
 
<body>
    <h1>GeeksforGeeks</h1>
 
    <h2>HTML img height Attribute</h2>
 
    <img src=
         alt="GeeksforGeeks logo"
         width="200px"
         height="200px">
</body>
 
</html>


Output:

  

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

  • Google Chrome
  • Edge 12 and above
  • Internet Explorer
  • Firefox
  • Safari
  • Opera

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads