Answers for "back color"

10

html background color

<html>
 
<body style="background-color:red;">
  <p> test <p/> 
  <body/>
  </html>
Posted by: Guest on February-23-2020
26

css background color

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

background color css

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

Browse Popular Code Answers by Language