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

Live Demo

<!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>

Updated on: 16-Jun-2020

209 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements