Answers for "style background css"

2

html change background color of page

<body bgcolor="some color">
 HTML goes here
</body>
Posted by: Guest on July-30-2020
5

background css

body {
  background: #ffffff url("img_tree.png") no-repeat fixed right top;
}
Posted by: Guest on April-29-2020
5

background css

/* Color (Example: red): */
html,body {
  background-color: red;
}

/* Image (Example: your.picture): */
html,body {
  background-image: url("your.picture");
}
Posted by: Guest on April-25-2020

Browse Popular Code Answers by Language