/ Published in: CSS
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
Copy this code and paste it in your HTML
/* 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; }
URL: http://www.nealgrosskopf.com/tech/thread.asp?pid=14