Bootstrap .nav-justified class


Make tabs or pills of equal widths as of their parent at screens wider than 768px using class .nav-justified along with .nav, .nav-tabs or .nav, .nav-pills respectively. On smaller screens, the nav links are stacked.

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet">
      <script src = "/scripts/jquery.min.js"></script>
      <script src = "/bootstrap/js/bootstrap.min.js"></script>
   </head>
   <body style = "background: #FADBD8;">
      <h2>Subjects</h2>
         <ul class = "nav nav-tabs nav-justified">
            <li class = "active"><a href = "#">Home</a></li>
            <li><a href = "#">Team</a></li>
            <li><a href = "#">Authors</a></li>
            <li><a href = "#">MVPs</a></li>
         </ul>
   </body>
</html>

Updated on: 12-Jun-2020

248 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements