Removing body margin in CSS
I would say that using this global reset is a bad way of solving this. * { margin: 0; padding: 0; } The reason for the h1 margin popping out of the parent is that the parent does not have a padding. If you add a padding to the parent element of the h1, the … Read more