Answers for "image as background center css"

CSS
0

css center image on background

body {
  background-image: url('w3css.gif');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}
Posted by: Guest on February-16-2022
0

center background image in css

body {
  background-position: center;
}
Posted by: Guest on February-27-2022

Code answers related to "image as background center css"

Browse Popular Code Answers by Language