css-attr-basic.html 193 B

12345678
  1. <!doctype html>
  2. <link rel="match" href="reference/css-attr-ref.html" />
  3. <style>
  4. .foo::before {
  5. content: attr(bar);
  6. }
  7. </style>
  8. <div class="foo" bar="Well, hello friends!"></div>