CSS - Declaration stops

by scheinercc

CSS

/* anti-pattern */

.box-type-1 {
    background: #f00 url("images/folder/picture.png") no-repeat 0 0;
    font-family: "awesome font", verdana;
}


/* pattern */

.box-type-1 {
    background: #f00 url(images/folder/picture.png) no-repeat 0 0;
    font-family: 'awesome font', verdana;
}