beingchinmay
Level 1
Write the reason you're deleting this FAQ
Specificity is very useful when writing CSS as it allows you to set general styles for common elements and then override them for more specific elements. For instance, say you want most of the forms on your site to be 30em wide but your search form needs to be only 15em wide:
form {width: 30em;}
form#search {width: 15em;}
anwebservices
Are you sure you want to delete this post?