Answers for "css background image horizontal center"

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
1

css image background center horizontally in div

/*
div with 
class="slot_image" 
*/
.slot_image{
    background: url(url) no-repeat center;
}
Posted by: Guest on December-18-2020
0

center background image in css

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

Code answers related to "css background image horizontal center"

Browse Popular Code Answers by Language