Answers for "css background image change"

CSS
1

change background CSS

body {
    background-image: url("Enter URL image file here");
    background-color: #e9e9e9;
}
Posted by: Guest on October-07-2021
2

how to change background image in css

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

Code answers related to "css background image change"

Browse Popular Code Answers by Language