Set background color to Body tag in CSS.

body {
    background-color: #cccccc;
}


Example Source:


<!doctype html>
<html lang="en">
 <head>
  <meta charset="utf-8">
  <meta name="description" content="Support Code CSS: Add Body Background Color.">
  <meta name="author" content="bnson">
  <title>Support Code CSS: Add Body Background Color.</title>

  <style>
   body  {
    background-image: url("paper.gif");
    background-color: #cccccc;
   }
  </style>
 </head>

 <body>
   <!-- Content -->
 </body>

</html>

Set background color to Body tag  in CSS.