Pro CSS
6 subscribers
193 photos
248 links
Download Telegram
/* good css */

.foo {
color: red;

@media screen and (max-width: 480px) {
color: blue;
}
}

/* bad css */

.foo {
color: red;
}

@media screen and (max-width: 480px) {
.foo {
color: blue;
}
}