I am considering replacing
body, label, p, div, input{ padding: 0px; margin: 0px; }
with
* { margin: 0; padding: 0; }
Is * catch everything? What elements does it apply to?
I am passing some CSS from here , and I need it to display correctly, but I have never used * before.
user1637281
source share