/ Published in: CSS
URL: http://www.nealgrosskopf.com/tech/thread.asp?pid=14
Using CSS3 selectors, highlight links to deleted pages and 404 pages. Also highlight function calls to deleted javascript using this CSS technique.
Expand |
Embed | Plain Text
/* paths to deleted pages */ a[href="/pages/contact.asp"], a[href="/pages/email.asp"] { border-width: 0px; } /* a deleted javascript function call */ a[onclick*="old()"] { border: 5px dashed red; }
Comments
Subscribe to comments
You need to login to post a comment.

Correction:
a[href$="/contact.asp"], a[href$="/email.asp"] { border: 5px double red; }
a[href="/pages/contact.asp"], a[href="/pages/email.asp"] { border-width: 0px; }