Home > database >  How to scale a background image to fit the full width of the screen while maintaining aspect ratio?
How to scale a background image to fit the full width of the screen while maintaining aspect ratio?

Time:01-23

OBJECTIVE

This is my website enter image description here

For some reason it looks perfect within Elementor

CodePudding user response:

add following code in css (note: set height of selector to manual like this):

selector {
    background-size: cover;
    background-repeat:no-repeat;
    background-position:center;
    height: 50vh   /*manual add*/;
    width:100vw;
}

  •  Tags:  
  • Related