How to remove the top white space of your web page using css?
Answer / 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 |
What is the difference between html and css?
What are the differences between relative and absolute in css?
How do I change font in css?
Explain the concept of specificity in css.
Which characters can css-names contain?
What are properties of style sheet ?
What is block formatting context? How does it work?
What is a preprocessor what are the advantage of preprocessor?
What is the fee of css?
What does plus sign mean in css?
Describe Internal CSS with it's Syntax?
What are the associated border-radius properties?