bootstrap 5 borders style button example

Bootstrap 5 borders style button example

May 31, 2022 By Aaronn

Hello friend, Toady you will learn how to use bootstrap 5 border style button using borders classes. For this section we will not use any css or inline css class, We can create good looking button using only bootstrap 5 classes let see. first you need to setup bootstrap 5 project. you can read below article.

How to install & setup bootstrap 5


How to use Bootstrap 5 borders style button

1) First you need to create button element and give .btn name.

2) Then Apply .bg-dark for background & .text-white class.

3) Next, you need to use .border and border size class border-3.

4) Finally you need to use border less class like border-bottom-0.

Example

<!DOCTYPE html>
<html lang="en">

  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Bootstrap 5 borders style button example</title>
    <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" />
  </head>

  <body>
    <button class="border btn border-3 bg-dark text-white border-bottom-0 border-top-0 border-end-0">
      Border Button
    </button>
    <button class="border border-primary btn border-3 bg-dark text-white border-bottom-0 border-top-0 border-end-0">
      Border Button
    </button>
    <button class="border border-success btn border-3 bg-dark text-white border-bottom-0 border-top-0 border-end-0">
      Border Button
    </button>
    <button class="border border-warning btn border-3 bg-dark text-white border-bottom-0 border-top-0 border-end-0">
      Border Button
    </button>
    <button class="border border-info btn border-3 bg-dark text-white border-bottom-0 border-top-0 border-end-0">
      Border Button
    </button>
    <button class="border border-light btn border-3 bg-dark text-white border-bottom-0 border-top-0 border-end-0">
      Border Button
    </button>
    <button class="border border-danger btn border-3 bg-dark text-white border-bottom-0 border-top-0 border-end-0">
      Border Button
    </button>
  </body>

</html>
bootstrap 5 border styles button

bootstrap 5 border styles button


Bootstrap 5 border button.

<button class="border border-dark btn border-3 bg-light border-bottom-0 border-top-0 border-end-0">
    Border Button
</button>
<button class="border border-primary btn border-3 bg-light ">
    Border Button
</button>
<button class="border border-success btn border-3 bg-light  border-bottom-0 border-top-0 border-start-0">
    Border Button
</button>
bootstrap 5 border button

bootstrap 5 border button