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:

  • color name: Define the background color of the marquee.

Example:

html




<!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;">
      w3wiki
  </h1>
  
    <marquee class="marq"
             bgcolor="Green" 
             direction="left" 
             loop="">
        Background color is green
    </marquee>
  
</body>
  
</html>



Output:


Supported Browsers:
HTML Marquee bgcolor attribute

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