I have been looking everywhere for an answer but cannot find it anywhere...
What i want to do is: - Extent all the images on my website to the sides of the screen (ie: get rid of the margins)
I have put the below code in CSS:
#bg {
position: fixed;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
z-index: -100;
And added the below on the HTML side:
<div id="bg">
<img src="" alt="">
</div>
However this code is to fit a background image to fit the whole screen..
I am a novice at coding, and would much appreciate your help.
Fabien