Can you spot the disparity between the following two CSS properties?
border-right: 1px dotted #CCCCCC;
Versus:
border-right: 1 px dotted #CCCCCC;
Is there a distinction between the two?
Is the second example incorrect? Should the number be directly next to px
in CSS syntax?