Open In App

HTML | Marquee height attribute

The Marquee height attribute in HTML is used to set the height of marquee in pixels or percentage value.
Syntax: 
 

<marquee height="px/%" >

Attribute value: 
 



Note : The <marquee> height attribute is not supported by HTML5.

Example: 
 






<!DOCTYPE html>
<html>
 
<head>
    <title>HTML | Marquee height attribute
</title>
    <style>
        .main {
            text-align: center;
        }
    </style>
</head>
 
<body>
    <h1 style="color:green; text-align:center;">
      GeeksforGeeks
  </h1>
    <div class="main">
        <marquee height=25px
                 bgcolor="Green"
                 direction="left"
                 loop="">
            Left
        </marquee>
        <marquee height=50px
                 bgcolor="Green"
                 direction="right"
                 loop="">
            Right
        </marquee>
    </div>
</body>
 
</html>

Output: 
 

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

 


Article Tags :