How to apply padding for all sides in one statement?
If your padding property has
-
4 values
padding: (top) (right) (bottom) (left) - padding: 25px 30px 56 px 10px -
3 values
padding: (top) (right & left) (bottom) - padding 20px 10px 30px -
2 values
padding: (top & bottom) (right & left) - padding: 20px 40px -
1 value
padding: (top & bottom & right & left) - padding: 100px
Depends on how many sides you want to keep different.