HTML/CSS/CSS Attributes and Javascript Style Properties/ important — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 08:16, 26 мая 2010
"!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>