Are these valid values for margin and padding in CSS?
margin: 0px 10px;
padding: 5px 0px 10px;
I thought that you always had to specify all four sides:
margin: 0px 10px 0px 0px;
padding: 5px 0px 10px 0px;
Also, when I write CSS like margin: 0px 10px 0px 0px; my editor IntelliJ warns me that the px is redundant. Should properties like this be written differently?