I have a website (g-floors.eu) and I want to make the background (in css I have defined a bg-image for the content) also responsive. Unfortunately I really don\'t have any i
If you want the entire image to show irrespective of the aspect ratio, then try this:
background-image:url('../images/bg.png'); background-repeat:no-repeat; background-size:100% 100%; background-position:center;
This will show the entire image no matter what the screen size.