I am encountering an issue with the footer tag once again. I need this section to occupy the entire screen, without affecting the rest of the body content. That is why I omitted setting margin:0; for body elements.
I attempted to apply margin:0 to the footer, but it did not yield the desired result (highlighted in the image). How can I resolve this issue?
Here is the CSS code for my footer:
footer {
padding: 5vw;
margin: 0px;
background-color: #DCEDC8;
color: black;
font-size: 4vw;
text-align: center;
font-weight: bold;
}
[1]: https://i.sstatic.net/kCczY.jpg![ The footer does not stretch across the screen correctly](https://i.sstatic.net/dblej.jpg)