mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
26 lines
544 B
HTML
26 lines
544 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
p { color: red; }
|
|
[
|
|
p { color: red !important; }
|
|
p { color: red !important; }
|
|
] p { color: red !important; }
|
|
p { color: green; }
|
|
</style>
|
|
<style>
|
|
div { color: red; }
|
|
:not([)
|
|
div { color: red !important; }
|
|
div { color: red !important; }
|
|
]) div { color: red !important; }
|
|
div { color: green; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>This text should be green.</p>
|
|
<div>This text should be green.</p>
|
|
</body>
|
|
</html>
|