When defining size in margin/padding etc in CSS I often miss out 'px' for the value '0' e.g.
.myClass {
5px 0 0 5px
}
I have recently been told by someone I work with to include 'px'
.myClass {
5px 0px 0px 5px
}
Is there any advantages or disadvantages or either approach? or is this just preference?