Open In App

HTML | Marquee bgcolor attribute

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

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;">
      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:

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

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads