Bootstrap 4 .border-dark class


To set a dark border to an element in Bootstrap, use the border-dark class.

To work with it is an easy task. Just use the class name as the element class −

<div class="test border border-dark">
  Dark Border
</div>

Above, the "test" class can also be seen. This is useful to set style for the element −

<style>
.test {
  width: 150px;
  height: 150px;
  margin: 35px;
}
</style>

You can try to run the following code to implement the border-dark class in Bootstrap 4 −

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>
    <style>
    .test {
      width: 150px;
      height: 150px;
      margin: 35px;
    }
    </style>
  </head>
<body>

<div class="container">
  <p>Rectangle with dark border:</p>
  <div class="test border border-dark">Dark Border</div>
</div>

</body>
</html>

Updated on: 17-Jun-2020

369 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements