Guest User

Untitled

a guest
Feb 25th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title> attribute selector</title>
  4.  
  5. <style>
  6. a[href$="pdf"] {
  7. color: red;
  8. }
  9. </style>
  10. </head>
  11. <body>
  12. <a href="test.pdf">Test</a>
  13. <a href="test.PDF">Test</a>
  14. <a href="test.pDF">Test</a>
  15. <a href="test.html">Test</a>
  16. <a href="test.xml">Test</a>
  17. <pre>
  18. a[href$="pdf" i]
  19. </pre>
  20. </body>
  21. </html>
Add Comment
Please, Sign In to add comment