Open In App

HTML | Marquee height attribute

Last Updated : 14 Feb, 2022
Comments
Improve
Suggest changes
Like Article
Like
Report

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: 
 

  • px: Define the height value of marquee.
  • %: Define the height value of marquee.

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


Example: 
 

html
<!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: 
 

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


 


Next Article

Similar Reads