Can anyone assist me with removing the large white margins on my react project? Here are some solutions I have attempted.
* { margin: 0; padding: 0; }
/-/-/-/
body {
max-width: 2040px;
margin: 0 auto;
padding: 0 5%;
clear: both;
}
I've experimented with various adjustments but haven't found a solution yet. The only CSS-affecting dependencies I have installed are bootstrap, which I don't believe is causing this issue. Increasing the max-width
to 2040px
still didn't resolve it. Your help would be greatly appreciated.
It's important to note that these white margins persist throughout the entire page and are not limited to the background image linked in the css
file
White Margins