- 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
Bootstrap .btn-link class
Deemphasize a button by making it look like a link while maintaining button behavior using the btn-link class in Bootstrap −
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <meta name = "viewport" content = "width = device-width, initial-scale = 1"> <link rel = "stylesheet" href = "https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css"> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src = "https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> </head> <body> <button type = "button" class = "btn btn-link">Link Button</button> </body> </html>
- Related Articles
- Bootstrap .btn class
- Bootstrap btn-toolbar class
- Bootstrap .btn-xs class
- Bootstrap .btn-warning class
- Bootstrap .btn-lg class
- Bootstrap .btn-block class
- Bootstrap btn-group class
- Bootstrap .btn-success class
- Bootstrap .btn-primary class
- Bootstrap .btn-info class
- Bootstrap .btn-danger class
- Bootstrap .btn-sm class
- Bootstrap btn-group-vertical class
- Bootstrap class btn-group-vertical
- Bootstrap input-group-btn class

Advertisements