summaryrefslogtreecommitdiff
path: root/legacy/haveproblems/star-selector.html
diff options
context:
space:
mode:
Diffstat (limited to 'legacy/haveproblems/star-selector.html')
-rw-r--r--legacy/haveproblems/star-selector.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/legacy/haveproblems/star-selector.html b/legacy/haveproblems/star-selector.html
new file mode 100644
index 0000000..a58e074
--- /dev/null
+++ b/legacy/haveproblems/star-selector.html
@@ -0,0 +1,28 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+ <title>star selector not being overridden</title>
+ <style type="text/css">
+ * {
+ background-color: yellow;
+ }
+ p {
+ background-color: red;
+ }
+ </style>
+</head>
+<body>
+
+<p>This paragraph text should have a red background.</p>
+
+<pre>
+* {
+ background-color: yellow;
+}
+p {
+ background-color: red;
+}
+</pre>
+
+</body>
+</html>