Answers for "background color style"

26

css background color

body {
  background-color: green;
}
Posted by: Guest on February-03-2020
14

how to make a background color in html

<body style="background-color: #fff">
  <!---this will change the body color---!>

</body>
Posted by: Guest on May-06-2020
7

background color css

html,body {
  background-color: red;
}
Posted by: Guest on April-25-2020
0

how to set background colour i js inline stylel

<!DOCTYPE html>
<html>
   <head>
      <title>HTML Backgorund Color</title>
   </head>
   <body style="background-color:grey;">
      <h1>Products</h1>
      <p>We have developed more than 10 products till now.</p>
   </body>
</html>
Posted by: Guest on September-18-2020
5

background color

//javascript type css:
document.body.style.backgroundColor = "blue";
// or inline css:
<div style="background-color: blue;"></div>
Posted by: Guest on July-03-2020
1

css background color

body {background-color: coral;}
Posted by: Guest on August-16-2020

Code answers related to "background color style"

Browse Popular Code Answers by Language