

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- 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-dark class
Use the .btn-outline-dark class in Bootstrap to set dark outline on a button.
The following is an example of a button with dark outline −
Set the above outline to the button, using the btn-outline-dark class as shown below −
<button type="button" class="btn btn-outline-dark"> Submit </button>
You can try to run the following code to implement the btn-outline-dark 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> <div class="container"> <h4>Bootstrap 4</h4> <p>Learning btn-outline-dark class usage:</p> <button type="button" class="btn btn-outline-dark">Submit</button> </div> </body> </html>
- Related Questions & Answers
- 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-info class
- Bootstrap 4 Button .btn-outline-secondary class
- Bootstrap 4 Button .btn-outline-danger class
- Dark grey outlined Bootstrap 4 Button
- Bootstrap 4 .border-dark class
- Style Bootstrap 4 cards with bg-dark class
- Bootstrap .btn class
- Bootstrap .btn-danger class
- Bootstrap .btn-sm class
- Bootstrap btn-toolbar class
- Bootstrap .btn-success class
Advertisements