Tratto dal tutorial w3c:
Generally speaking we can say that all the styles will "cascade" into a new "virtual" style sheet by the following rules, where number four has the highest priority:

1. Browser default
2. External style sheet
3. Internal style sheet (inside the <head> tag)
4. Inline style (inside an HTML element)

So, an inline style (inside an HTML element) has the highest priority, which means that it will override a style declared inside the <head> tag, in an external style sheet, or in a browser (a default value).
Si intendo un insieme di regole di stile o al singola regola? Cioè, posso ad esempio avere una classe che definisce tipo e dimensione del font per un p e poi assegnare il colore del testo tramite style?
E' corretto procedere utilizzare paragrafi di questo tipo?
codice:
<p class='testoArial' style='color:red'>blabla</p>