Answers for "css how to add image as background"

CSS
5

how to change background image in html

<style>
div {
  background-image: url('img_girl.jpg');
}
</style>
Posted by: Guest on July-24-2020
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 "css how to add image as background"

Browse Popular Code Answers by Language