I want to apply !important to all div,p,pre, and span elements, overwriting all properties which are currently written inline. For example:
.contpost p,pre,span,div{
color:#4c4c4c !important;
}
Does this color now apply to the whole page and specifically to that div?