Open In App

HTML | <object> height Attribute

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

The HTML <object> height attribute is used to specify the height of the object element in terms of pixel. 

Syntax: 

<object height="pixels">

Attribute Values:

  • pixels: It holds the height of the object in terms of pixels.

Below example illustrates the <object> height attribute in HTML: 

Example: 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML object height Attribute
    </title>
</head>
 
<body style="text-align:center;">
     
    <h2>HTML object height Attribute</h2>
     
    <object id="myobject" width="400"
                height="200" data=
    </object>
 
</body>
 
</html>


Output:

  

Supported Browsers: The browser supported by HTML object height attribute are listed below:

  • Google Chrome
  • Edge 12
  • Internet Explorer
  • Firefox 1
  • Safari
  • Opera

Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads