- 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 4 .btn-outline-success Button class
Use the btn-outline-success class in Bootstrap to set green outline to a button.
Green button outline states success and you can set a button like this −
<button type="button" class="btn btn-outline-success"> Result </button>
Above I have set the class on <button> element just like we set a class on any other element in HTML or Bootstrap.
Here is an example to learn how to work with the btn-outline-success class in Bootstrap −
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>Result</h2> <p>The following are the subjects:</p> <ul class = "list-group"> <li class = "list-group-item">Maths</li> <li class = "list-group-item">Digital Electronics</li> </ul> <p>For result, click below:</p> <button type="button" class="btn btn-outline-success">Result</button> </body> </html>
- Related Articles
- Bootstrap 4 Button .btn-outline-warning class
- Bootstrap 4 Button .btn-outline-primary class
- Bootstrap 4 Button .btn-outline-light class
- Bootstrap 4 Button .btn-outline-info class
- Bootstrap 4 Button .btn-outline-danger class
- Bootstrap 4 Button .btn-outline-secondary class
- Bootstrap 4 Button .btn-outline-dark class
- Bootstrap .btn-success class
- Bootstrap 4 .border-success class
- Bootstrap .btn class
- Style Bootstrap 4 card with bg-success class
- Set positive success action with green outlined Bootstrap 4 Button
- Bootstrap btn-toolbar class
- Bootstrap .btn-xs class
- Bootstrap .btn-warning class

Advertisements