我正在嘗試創建自定義工具提示。我對HTML和CSS比較陌生。問題在於我遵循關於工具提示的教程,但我在工具提示上雙擊顯示懸停。我看到我的自定義工具提示和股票一起。我希望只看到自定義的一個。雙工具提示彈出
HTML:
<button class="tooltip" title="Site1 tooltip." id=main1 type="button" onclick="loadData(1)">
<img src="Images/Icon.png" width="68" height="68"/>
</button>
CSS:
.tooltip{
display: inline;
position: relative;
}
.tooltip:hover:before{
border: solid;
border-color: #333 transparent;
border-width: 6px 6px 0 6px;
bottom: 20px;
content: attr(title);
left: 50%;
position: absolute;
z-index: 99;
}
你能提供一個工作的例子嗎? – Uooo