我为这个问题创建了一个jsFiddle。
a.tip {
position: relative;
}
a.tip span {
display: none;
position: absolute;
top: -5px;
left: 60px;
width: 125px;
padding: 5px;
z-index: 100;
background: #000;
color: #fff;
-moz-border-radius: 5px; /* this works only in camino/firefox */
-webkit-border-radius: 5px; /* this is just for Safari */
}
a:hover.tip {
font-size: 99%; /* this is just for IE */
}
a:hover.tip span {
display: block;
}
<center><a href="http://google.com/" class="tip">Link!<span>Hi its me!</span></a></center>
基本上我的网站上有一个工具提示,它出现在我的链接的右侧。但是在黑盒子的左侧,我想在盒子上附加一个指向链接的三角形,是否可以仅使用 CSS 来做到这一点?就像这样,但在左边