- 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
Bootstrap 4 Button .btn-outline-info class
To set an outline on a button that indicates information, you need to use the btn-outline-info class in Bootstrap.
Include the button element and set the btn-outline-info class −
<button type="button" class="btn btn-outline-info"> More Info </button>
You can try to run the following code to implement the btn-outline-info class −
Example
<!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap Example</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script> </head> <body> <h2>Event</h2> <p>The following are the details:</p> <ul class = "list-group"> <li class = "list-group-item">Event Timings 1PM TO 4PM</li> <li class = "list-group-item">Venue: 21 KH, HG Lane, Alabama</li> </ul> <p>For more information about the event:</p> <button type="button" class="btn btn-outline-info">More Info</button> </body> </html>
- Related Articles
- Bootstrap 4 Button .btn-outline-warning class
- Bootstrap 4 .btn-outline-success Button class
- Bootstrap 4 Button .btn-outline-primary class
- Bootstrap 4 Button .btn-outline-light class
- Bootstrap 4 Button .btn-outline-danger class
- Bootstrap 4 Button .btn-outline-secondary class
- Bootstrap 4 Button .btn-outline-dark class
- Bootstrap .btn-info class
- border-info class in Bootstrap 4
- Bootstrap .btn class
- Bootstrap alert-info class
- Bootstrap btn-toolbar class
- Bootstrap .btn-xs class
- Bootstrap .btn-warning class
- Bootstrap .btn-lg class

Advertisements