- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Style navigation pills inside the Bootstrap 4 card header
To style navigation pills inside the card header in Bootstrap 4, use the card-header-pills class as shown below & minus;
<ul class="nav nav-pills card-header-pills">
Set the navigation pills inside the header class in Bootstrap −
<div class="card-header"> <ul class="nav nav-pills card-header-pills"> <li class="nav-item"> <a class="nav-link active" href="#">Clothing</a> </li> <li class="nav-item"> <a class="nav-link" href="#">Electronics</a> </li> <li class="nav-item"> <a class="nav-link" href="#">Mobile Accessories</a> </li> </ul> </div>
You can try to run the following code to implement the card-header-pills class in Bootstrap 4 −
Example
<!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap Example</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <h2>Products</h2> <div class="card"> <div class="card-header"> <ul class="nav nav-pills card-header-pills"> <li class="nav-item"> <a class="nav-link active" href="#">Clothing</a> </li> <li class="nav-item"> <a class="nav-link" href="#">Electronics</a> </li> <li class="nav-item"> <a class="nav-link" href="#">Mobile Accessories</a> </li> </ul> </div> <div class="card-body"> <h5 class="card-title">Clothing</h5> <p class="card-text">We have Men and Women clothing line...</p> </div> </div> </div> </body> </html>
- Related Articles
- Style navigation tabs inside the Bootstrap 4 card header
- Bootstrap 4 .card-header-pills class
- Bootstrap 4 .card-header class
- Bootstrap 4 .card-header-tabs class
- Create a Bootstrap 4 card header
- Creating a Tabbed pills and Vertical pills navigation menu in Bootstrap
- Add a hover effect inside the Bootstrap 4 card
- Style Bootstrap 4 card with bg-success class
- Style Bootstrap 4 card with bg-primary class
- Style Bootstrap 4 card with bg-warning class
- Place the image at the bottom inside a Bootstrap 4 card
- Place the image at the top inside a Bootstrap 4 card
- Style Bootstrap card with bg-info class
- Bootstrap Pills
- Bootstrap 4 .card-columns class

Advertisements