[html] Remove body margins

Asked 2 years ago, Updated 2 years ago, 124 views

How can I remove the margin of the body part from HTml? css with body { margin: 0; Even if you enter padding: 0;}, the top, bottom, left, right, and right margins appear as shown in the image below.

html css margin

2022-09-22 08:59

1 Answers

You have to hold the margin padding for html as well. DEMO

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}


2022-09-22 08:59

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.