css-case-insensitive-html-attributes-selector-ref.html 184 B

12345678
  1. <!doctype html>
  2. <style>
  3. div[type=one] {
  4. background: red;
  5. }
  6. </style>
  7. <div type="one">I have a red background</div>
  8. <div type="two">I don't have a green background</div>