Open In App

HTML | Marquee bgcolor attribute

The Marquee bgcolor attribute in HTML is used to set the backgroundcolor of marquee.

Note: This attribute is no longer supported in HTML5.



Syntax:

<marquee bgcolor="colorname" >

Attribute value:



Example:




<!DOCTYPE html>
<html>
  
<head>
    <title>HTML Marquee bgcolor 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>
  
    <marquee class="marq"
             bgcolor="Green" 
             direction="left" 
             loop="">
        Background color is green
    </marquee>
  
</body>
  
</html>


Output:

Supported Browsers: The browsers supported by HTML Marquee bgcolor attribute are listed below:
Article Tags :