'!important' Example : important « CSS « HTML / CSS






'!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>

    
      
      








Related examples in the same category