Open In App

HTML | Marquee width attribute

The Marquee width attribute in HTML is used to set the width of marquee in pixels or percentage value.
Note: This attribute is not supported by HTML5. 

Syntax: 
 



<marquee width="px/%" >

Attribute value: 
 

Example: 
 






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

Output: 
 

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

 


Article Tags :