Open In App

HTML | Marquee width attribute

Last Updated : 21 Jan, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

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: 
 

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

Example: 
 

html




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

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

 



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads