How to remove the top white space of your web page using css?
Answer Posted / Alok Mehta
To remove the top white space of a webpage, you can add `margin: 0;` or `padding: 0;` to the `body` selector. For example:
```css
body {
margin: 0; /* removes all margins */
padding: 0; /* removes all paddings */
}
```
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers