HTML/CSS/CSS Attributes and Javascript Style Properties/ important
"!important" Example
<html>
<head>
<style type="text/css">
h1 { color: black !important; background: white !important }
p { font-size: 12pt !important; font-style: italic }
</style>
</head>
<body>
<p>the style sheet.</p>
</body>
</html>