CSS - Declaration stops

by scheinercc

CSS

/* anti-pattern */

body {
    font:10px/14px arial;
    padding:20px;
}


/* pattern */

body {
    font: 10px/14px arial;
    padding: 20px;
}