我正在使用Bootstrap和Font-Awesome作为图标,我正在尝试在链接上向他们添加工具提示,但工具提示无法在带有图标的链接上获得正确的定位。
#html
<div class="icon-head">
<ul>
<li><a href="https://www.facebook.com/" data-original-title="Tooltip on top" data-placement="top" rel="tooltip" title=""><i class="icon-facebook"></i></a>
</li>
</ul>
</div>
#css
.icon-head {
position:relative;
margin:0;
padding: 0;
text-align: center;
}
.icon-head i {
font-size: 28px;
margin-left: 15px;
display: inline-block;
}
.icon-head ul {
list-style: none outside none;
margin-left: 7%;
padding: 0;
text-align: center;
}
.icon-head a {
text-decoration: none;
display: block;
color: #34495e;
line-height: 30px;
}
.icon-head a:hover {
color: black;
}
.icon-head li {
background: none;
background-size: 0px;
cursor: pointer;
margin-top: 15px;
margin-bottom: 0px;
margin-right: 7px;
padding: 0px;
float: left;
display: inline;
}
.icon-head li:hover {
color: black;
background: none;
background-size: 0px;
}
我希望工具提示显示在图标的中间顶部。
好的,我可以修改margin
样式添加tooltip
,例如:
.tooltip.top {
margin-top:-11px;
margin-left:7px;
}
但是,它可以打破其他工具提示的位置。
如何在margin
tooltip
时修复它们
答案 0 :(得分:0)
在链接中添加display:block;
和一些填充将使工具提示更好,更一致。
答案 1 :(得分:0)
<强>解决强>
移除margin-left
上的.icon-head i
并将margin-left: 12%;
添加到.icon-head ul
谢谢大家。