我想在引導標籤中添加一個關閉圖標,然後點擊圖標關閉標籤。如何在引導選項卡中添加關閉圖標?
我在下面嘗試,但「X」與標籤標題不在同一行顯示。
.close {
font-size: 20px;
font-weight: bold;
line-height: 18px;
color: #000000;
text-shadow: 0 1px 0 #ffffff;
opacity: 0.2;
filter: alpha(opacity=20);
text-decoration: none;
display:inline;
}
.close:hover {
display:inline;
color: #000000;
text-decoration: none;
opacity: 0.4;
filter: alpha(opacity=40);
cursor: pointer;
}
<a id="user-list-tab-li" style="display:inline;" href="#user-list-tab-pane">The tab</a>
<span class="close">×</span>
我認爲它能夠更好地使用隱藏()。它再次顯示()它更容易。 –
謝謝,它工作完美。 – sureone
在IE中不能很好地呈現。標籤被壓扁。 – Chielt