I’ve got the problem when im using vite to create react app, the app got some strange margin and padding which can only be deleted with:
*{
margin: 0 !important;
padding: 0 !important;
box-sizing: border-box;
}
At the index.css directory,
i’ve been fighting with that for like an hour, any ideas or maybe solutions?
below is the picture of the problem
https://cdn.discordapp.com/attachments/1045101615390130229/1127676740555251842/image.png
I’ve tried putting margin and padding in every single place or finding it in devtools but nothing happened.
2
Answers
Have you checked the App.css file? There is usually one created by default that has some simple styling that might be what you are referencing.
Can you also sen your code pls? One time I put a div in a empty div and I got the same problem: So the Problem can be caused by nested divs.