Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

do not use empty rulesetscss(emptyrules)

/* you shouldn't use empty rulesets */

/* this is ok */
p {
	color: blue;
}

/* this is not ok because there's nothing inside of it */
p {

}
 
PREVIOUS NEXT
Tagged: #empty
ADD COMMENT
Topic
Name
3+4 =