Habe mal wieder eine kleine CSS Spielerei für euch.
Beispiel: Klick mich
CSS Code
HTML
/* CSS styles for outgoing Links */
a[href*='http://']:after {
content: "Ausgehender Link zu " attr(href);
display:none;
text-align:center;
color:#ccc;
position:fixed;
top:0;
left:0;
width:100%;
padding:10px 0;
background:#333;
line-height:20px;
}
a[href*='http://']:hover:after {
display:block;
}
/* ############################# */
Alles anzeigen