- 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-lg class
To make a large button, use the .btn-lg class in Bootstrap.
You can try to run the following code to implement the btn-lg class
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-default btn-lg"> Large button </button> </body> </html>
- Related Articles
- input-lg Bootstrap class
- col-lg-* Bootstrap class
- Bootstrap pagination-lg class
- Bootstrap well-lg class
- Bootstrap .btn class
- Bootstrap class input-group-lg
- Bootstrap btn-toolbar class
- Bootstrap .btn-xs class
- Bootstrap .btn-warning class
- Bootstrap .btn-link class
- Bootstrap .btn-block class
- Bootstrap btn-group class
- Bootstrap .btn-success class
- Bootstrap .btn-primary class
- Bootstrap .btn-info class

Advertisements