Open In App

HTML | hspace Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <object> hspace Attribute is used to specify the number of whitespaces on the left and right side of an object. 

Syntax:  

<object hspace="pixels"> 

Attribute:  

  • pixels: It specifies the number of whitespaces on the right and left side of an object in terms of pixels.

Note: The <object> hspace Attribute is not supported in HTML 5.

Below examples illustrate the <object> hspace attribute in HTML:

Example 1: In this example the object with 50px margin on both side.  

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML object hspace Attribute
    </title>
</head>
 
<body>
    <center>
 
        <h1 style="color:green">GeeksforGeeks</h1>
        <h4>
            HTML <object>hspace Attribute
        </h4>
        <br>
 
        <object data=
                width="350px" height="150px" hspace="50">
            GeeksforGeeks
        </object>
    </center>
</body>
 
</html>


Output: 
 

Example 2: 

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML object hspace Attribute
    </title>
</head>
 
<body>
    <center>
 
        <h1 style="color:green">GeeksforGeeks</h1>
        <h4>
         HTML <object>hspace Attribute
        </h4>
    </center>
    <br>
 
    <div><b>With 50px hspace:</b>
        <object hspace="50">
            GeeksforGeeks
        </object>
        <object hspace="50">
            A Computer Science Portal
        </object>
    </div>
 
    <br><br>
 
    <div><b>Without hspace:</b>
        <object>
            GeeksforGeeks
        </object>
 
        <object>
            A Computer Science Portal
        </object>
    </div>
 
</body>
 
</html>


Output: 
 

Supported Browsers: The browsers supported by HTML <object> hspace Attribute are listed below: 
 

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

 



Last Updated : 02 Feb, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads