Answers for "change image background css"

CSS
2

how to change background image in css

<style>
body{
  background-image: url('img_girl.jpg');
}
</style>
Posted by: Guest on July-24-2020
5

add background image in css

.w {
background-image: url("images/tom1.png");
}

.a {
background-image: url("images/tom2.png");
}

.s {
background-image: url("images/tom3.png");
}
Posted by: Guest on August-20-2020

Code answers related to "change image background css"

Browse Popular Code Answers by Language