I have set the body
element's margin
to 0 in my CSS
stylesheet. However, I am struggling to successfully set the margin
for the div
elements.
Therefore, I would like to set all other things' margin
to 0; except for the div
elements with the class abc
, whose margin
should remain at 5.
Here is my current code:
body {
margin: 0;
}
div {
margin: 5;
}
How can I achieve this?