mirror of
				https://github.com/twbs/bootstrap.git
				synced 2025-10-31 00:04:27 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			73 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <div class="bs-docs-section">
 | |
|   <h1 id="badges" class="page-header">Badges</h1>
 | |
| 
 | |
|   <p class="lead">Easily highlight new or unread items by adding a <code><span class="badge"></code> to links, Bootstrap navs, and more.</p>
 | |
| 
 | |
|   <div class="bs-example">
 | |
|     <a href="#">Inbox <span class="badge">42</span></a>
 | |
|   </div>
 | |
| {% highlight html %}
 | |
| <a href="#">Inbox <span class="badge">42</span></a>
 | |
| {% endhighlight %}
 | |
| 
 | |
|   <h4>Self collapsing</h4>
 | |
|   <p>When there are no new or unread items, badges will simply collapse (via CSS's <code>:empty</code> selector) provided no content exists within.</p>
 | |
| 
 | |
|   <div class="bs-callout bs-callout-danger">
 | |
|     <h4>Cross-browser compatibility</h4>
 | |
|     <p>Badges won't self collapse in Internet Explorer 8 because it lacks support for the <code>:empty</code> selector.</p>
 | |
|   </div>
 | |
| 
 | |
|   <h4>Adapts to active nav states</h4>
 | |
|   <p>Built-in styles are included for placing badges in active states in pill navigations.</p>
 | |
|   <div class="bs-example">
 | |
|     <ul class="nav nav-pills" role="tablist">
 | |
|       <li class="active"><a href="#">Home <span class="badge">42</span></a></li>
 | |
|       <li><a href="#">Profile</a></li>
 | |
|       <li><a href="#">Messages <span class="badge">3</span></a></li>
 | |
|     </ul>
 | |
|     <br>
 | |
|     <ul class="nav nav-pills nav-stacked" role="tablist" style="max-width: 260px;">
 | |
|       <li class="active">
 | |
|         <a href="#">
 | |
|           <span class="badge pull-right">42</span>
 | |
|           Home
 | |
|         </a>
 | |
|       </li>
 | |
|       <li><a href="#">Profile</a></li>
 | |
|       <li>
 | |
|         <a href="#">
 | |
|           <span class="badge pull-right">3</span>
 | |
|           Messages
 | |
|         </a>
 | |
|       </li>
 | |
|     </ul>
 | |
|     <br>
 | |
|     <p>
 | |
|       <button class="btn btn-primary btn-lg" type="button">
 | |
|         Large button <span class="badge">4</span>
 | |
|       </button>
 | |
|       <button class="btn btn-primary" type="button">
 | |
|         Button <span class="badge">4</span>
 | |
|       </button>
 | |
|       <button class="btn btn-primary btn-sm" type="button">
 | |
|         Small button <span class="badge">4</span>
 | |
|       </button>
 | |
|       <button class="btn btn-primary btn-xs" type="button">
 | |
|         Extra small <span class="badge">4</span>
 | |
|       </button>
 | |
|     </p>
 | |
|   </div>
 | |
| {% highlight html %}
 | |
| <ul class="nav nav-pills nav-stacked" role="tablist">
 | |
|   <li class="active">
 | |
|     <a href="#">
 | |
|       <span class="badge pull-right">42</span>
 | |
|       Home
 | |
|     </a>
 | |
|   </li>
 | |
|   ...
 | |
| </ul>
 | |
| {% endhighlight %}
 | |
| </div>
 |