Answers for "create a background using css"

CSS
16

how to add background in css

body {
 background-image: url("paper.gif");
 background-color: #cccccc;
}
Posted by: Guest on November-07-2019
5

background css

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

Code answers related to "create a background using css"

Browse Popular Code Answers by Language