2012-10-22 71 views
5

通過使用引導程序,我想顯示綠色和紅色標籤,其上下文就像v或x。引導中的標籤和徽章

v應該是綠色的,x應該是紅色的。

我寫了下面的代碼,但我想有更好的效果。

<span class="badge badge-success">V</span> 
<span class="badge badge-important">X</span> 

任何想法,我應該如何通過使用bootstrap?

這裏是我將通過使用引導標籤和徽章得到的例子。

enter image description here

enter image description here

+1

徽章和標籤不適合在這種情況下使用,因爲這些既不是計數器(徽章)也不標記消息。 – Jason

回答

10

如果結合使用字體真棒(http://fortawesome.github.com/Font-Awesome/)與Twitter的引導(其中它的設計),你將能夠做這樣的事情:

<i class="icon-ok-sign" style="color: green; font-size: 18pt;"></i> 
<i class="icon-remove-sign" style="color: red; font-size: 18pt;"></i> 
<br/><br/> 

<i class="icon-ok-circle" style="color: green; font-size: 18pt;"></i> 
<i class="icon-remove-circle" style="color: red; font-size: 18pt;"></i> 
<br/><br/> 

<i class="icon-ok" style="color: green; font-size: 14pt;"></i> 
<i class="icon-remove" style="color: red; font-size: 14pt;"></i> 

這會輸出:

enter image description here

或者您可以使用別處定義的CSS類來適當地設置它們的樣式。

字體真棒基於SVG圖像,並且可以縮放到任何尺寸(在合理的範圍內)。
您現在還可以將您需要的圖標集合在一起,而不是默認使用icnfnt來包含它們。

+0

也檢查出fontello.com,它可以讓你挑選最小的一組字體圖標,並將它們下載到一個最小的字體文件以及相應的CSS樣式表中。 –

+0

icnfnt似乎是一個死鏈接。 – d1str0