Answers for "css div background color"

3

how to change the page background in css

body {
  /* this changes the page's background to green  */
  background-color: green;
}
Posted by: Guest on June-24-2020
5

html how to change background color

<body style="background-color:powderblue;">
<p style="background-color:tomato;">This paragraph has a red background.</p>
</body>
Posted by: Guest on September-04-2020
7

background color css

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

turn a div green

div {
	background-color: green;
}
Posted by: Guest on February-24-2020

Code answers related to "css div background color"

Browse Popular Code Answers by Language