CSS Tooltip

Der Begriff Hyperlinks - (klickbare Verweise auf andere Webseiten) soll hier mit einem kurzen 'Tooltip' erläutert werden.

/* tooltips */ .tooltip a { text-decoration: none; background-color: transparent; color: #000; border-bottom: 1px dotted #333; } .tooltip a:hover { background-color: #ffc; color: #000; border: 1px solid #000; padding: 0 5px; cursor: default; } .tooltip a span, .tooltip a:hover span .invis { display: none; } .tooltip a:hover span { display: inline; }