I've been testing Bootstrap V4
if you have:
<div class="p-3 pl-0"></div>
Shouldn't padding be 3 3 3 0 instead of 3 3 3 3 ?
All though in the source code, p-3 will always be listed after pl-0 due to their code. But how to achieve this without going for repetitive solution like:
<div class="pt-3 pr-3 pb-3 pl-0"></div>
or
<div class="py-3 pr-3 pl-0"></div>
?
Both seem less initiative as p-3 + pl-0, any advice?