Open In App

HTML | Marquee hspace attribute

The Marquee hspace attribute in HTML is used to set the horizontal margin. A given value is used to set the space between the marquee element and other contents.

Note: This attribute is not supported by HTML5. 
Syntax: 
 



<marquee hspace="px/%" >

Attribute value: 
 

Example: 
 






<!DOCTYPE html>
<html>
 
<head>
    <title> HTML | Marquee hspace attribute</title>
    <style>
        .main {
            text-align: center;
        }
         
        .marq {
            padding-top: 30px;
            padding-bottom: 30px;
        }
    </style>
</head>
 
<body>
    <h1 style="color:green; text-align:center;">
      GeeksforGeeks
  </h1>
    <div class="main">
        <marquee class="marq"
                 bgcolor="Green"
                 direction="left"
                 loop=""
                 hspace="25%">
            hspace 0
        </marquee>
        Other content
        <marquee class="marq"
                 bgcolor="Green"
                 direction="left"
                 loop=""
                 hspace="45%">
            hspace 50
        </marquee>
        Other content
    </div>
</body>
 
</html>

Output: 
 

Supported Browsers: The browsers supported by HTML Marquee hspace attribute are listed below: 
 

 


Article Tags :