New to CSS and need help overiding inherited CSS file.
My font is inheriting the the styles/master.css information.
How do I overide it and include my own styles?
********** CODE ********************
<link href=“styles/master.css” rel=“stylesheet” type=“text/css”>
<style>
.quotefont {
text-align:left !important;
text-decoration:underline !important;
}
</style>
.
.
.
<font class=“quotefont”>“This font should be aligned left and underlined but it’s not.”</font>
********** CODE ********************