- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Set a light grey border to an element in Bootstrap 4
To set a light grey border to an element, use the border border-light class in Bootstrap 4.
Adding a light border is easy as shown below −
<div class="demo border border-light"> This element has light border </div>
You can try to run the following code to implement the border-light-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> <style> .demo { width: 150px; height: 220px; margin: 15px; } </style> </head> <body> <div class="container"> <p>Demo</p> <div class="demo border border-light">This element has light border</div> </div> </body> </html>
- Related Articles
- Set a grey border to an element in Bootstrap 4
- Set light grey outlined Bootstrap 4 Button
- Set a white border to an element in Bootstrap
- Set a dark border to an element in Bootstrap
- Set a blue border to an element in Bootstrap
- Set a border to an element in Bootstrap to indicate information
- Bootstrap 4 .border-light class
- Set a green border to an element in Bootstrap to indicate success
- Add a light grey background color to the Bootstrap 4 card
- Set orange border on an element in Bootstrap to indicate danger
- Remove the top border from an element in Bootstrap 4
- Remove the left border from an element in Bootstrap 4
- Set the width of an element to 50% in Bootstrap 4
- Set less important stuff with grey outlined Bootstrap 4 Button
- Add a red border to an element in Bootstrap to indicate danger

Advertisements