Set all list items on a single line with Bootstrap



To set all list items on a single line, use the .list-inline class.

You can try to run the following code to implement the .list-inline class −

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>       <div class = "container">          <h2>Technologies</h2>          <ul class="list-inline">             <li><a href = "#">Home</a></li>             <li><a href = "#">PHP</a></li>             <li><a href = "#">Java</a></li>             <li><a href = "#">jQuery</a></li>             <li><a href = "#">JavaScript</a></li>             <li><a href = "#">Ruby</a></li>          </ul>       </div>    </body> </html>
Updated on: 2020-06-15T06:27:53+05:30

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements