Answers for "how to add an image in background using css"

CSS
151

css background image

background-image: url("image.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
Posted by: Guest on April-07-2020
1

css image background

body {
 background-image: url("image url");
 background-size: 100%
}
Posted by: Guest on December-03-2021

Code answers related to "how to add an image in background using css"

Browse Popular Code Answers by Language