Day 3: logical property shorthands

from blog Manuel Matuzović - Blog, | ↗ original
↗ original
If you use a shorthand property like margin with all 4 values, the properties will always be applied in the direction top - right - bottom - left, no matter the reading direction.Physical margin Physical margin rtl button { margin: 20px 40px 10px 100px; } /* LTR: 20px 40px 10px 100px RTL: 20px 40px 10px 100px */ .physical { margin: 20px 40px...