- 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
Remove default list-style in Bootstrap
To remove the list styles in Bootstrap, use the .list-unstyled class.
You can try to run the following code to implement the .list-unstyled class −
Example
<!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> <div class = "container"> <h2>Technologies (Unstyled)</h2> <ul class = "list-unstyled"> <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>
- Related Articles
- Bootstrap navbar-default class
- Create Default Bootstrap Navbar
- Bootstrap panel-default class
- Style the Bootstrap modal
- Usage of Bootstrap panel-default
- Create a default Bootstrap button
- Add style to images with Bootstrap
- Reset HTML input style for checkboxes to default in IE
- Remove borders from an element in Bootstrap
- Remove float from an element in Bootstrap
- list-unstyled class in Bootstrap
- list-inline class in Bootstrap
- Display the collapsible content by default with Bootstrap
- How to clone sidebar by default using Bootstrap?
- Bootstrap Filter list

Advertisements