Tooltip над ссылкой

by Alexander Lashchevsky

HTML

<a href="#" title="Текст подсказки" class="tooltip">Ссылка</a>

CSS

.tooltip{display:inline;position:relative;}
.tooltip:hover:after{background: #000; opacity: 0.9; border-radius: 5px; bottom: 18px; color: #fff; content: attr(title); display: block; left: -10%; padding: 5px 15px; position: absolute; white-space: nowrap; z-index: 999; margin-bottom: 5px;}
.tooltip:hover:before{border: solid; border-color: #000 transparent; border-width: 6px 6px 0 6px; bottom: 17px; content: ""; display: block; left: 15%; position: absolute; z-index: 99;}