I am working on a legacy project that has CSS Reset with *{ margin:0; padding:0 } applied to everything. Now, my new code doesn\'t need that as it relies on Nor
*{ margin:0; padding:0 }
You can reset the padding (and I think everything else) with initial to the default.
initial
p { padding: initial; }