Bootstrap 4 Button .btn-outline-secondary class


Use the btn-outline-seondary class to set a grey outline in Bootstrap 4 to show less important information.

The following is the code to set Bootstrap button to add grey outline −

<button type="button" class="btn btn-outline-secondary">
  More
</button>

Let us see how to implement the btn-outline-secondary class −

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>Tools</h2>
  <p>The following are the tools:</p>
  <ul class = "list-group">
    <li class = "list-group-item">Online Compiler</li>
    <li class = "list-group-item">Image Editor</li>
    <li class = "list-group-item">Image Optimizer</li>
    <li class = "list-group-item">Whiteboard</li>
  </ul>
  <p>For more tools, click below:</p>
  <button type="button" class="btn btn-outline-secondary">More</button>

</body>
</html>

Updated on: 18-Jun-2020

170 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements