- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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
Link Bootstrap List Group Items
Use the anchor tags instead of list items and link the list groups using the list-group-item class −
You can try to run the following code to link Bootstrap list group items −
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> <a href = "#" class = "list-group-item active"> Web Dev </a> <a href = "#" class = "list-group-item">PHP</a> <a href = "#" class = "list-group-item">HTML5</a> <a href = "#" class = "list-group-item">Java</a> </body> </html>
- Related Articles
- Bootstrap Collapsible list group
- Bootstrap list-group class
- Bootstrap list-group-item class
- Disable a list item in a Bootstrap list group
- Add HTML Content to Bootstrap List Group
- Create a bordered list group in Bootstrap
- Create a list group heading in Bootstrap
- Bootstrap Collapsible link
- Add badges component to Bootstrap list group item
- Item text inside the list group in Bootstrap
- Bootstrap .btn-link class
- Bootstrap alert-link class
- Set all list items on a single line with Bootstrap
- Set warning action for a list item in a list group with Bootstrap
- Set danger action for a list item in a list group with Bootstrap

Advertisements