2024-06-22 13:33:48 +02:00
|
|
|
<!doctype html>
|
2024-11-05 12:49:08 +00:00
|
|
|
<link rel="match" href="../expected/css-case-insensitive-html-attributes-selector-ref.html" />
|
2024-06-22 13:33:48 +02:00
|
|
|
<style>
|
|
|
|
div[type=one] { /* 'type' is a case-insensitive html attribute */
|
|
|
|
background: red;
|
|
|
|
}
|
|
|
|
div[test=two] { /* 'test' is NOT a case-insensitive html attribute */
|
|
|
|
background: green;
|
|
|
|
}
|
2025-05-18 07:27:01 +03:00
|
|
|
[aB] div {
|
|
|
|
background: blue;
|
|
|
|
}
|
2024-06-22 13:33:48 +02:00
|
|
|
</style>
|
|
|
|
<div type="ONE">I have a red background</div>
|
2025-05-18 07:27:01 +03:00
|
|
|
<div test="TWO">I don't have a green background</div>
|
|
|
|
<div ab><div>I have a blue background</div></div>
|