The task was to set red color to all paragraphs in the class standart
I did it this way
.standart p { color:red; }
but I was told it's bad solution and this is the "good one"
p.standart { color:red; }
What's the difference between these two?