- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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
Indicate a close icon with Bootstrap
To set a close icon in Bootstrap, use the .close class.
You can try to run the following code to set a close icon −
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <div style = "width:600px;background-color:orange;"> <span>Here's the close icon</span> <button type = "button" class = "close"><span aria-hidden = "true">&times;</span> <span class = "sr-only"> Close icon </span> </button> </div> </body> </html>
- Related Articles
- Indicate a tabbed menu with Bootstrap
- Create a caret arrow icon that represents dropdown button with Bootstrap
- Close Bootstrap class
- Indicate danger with red outlined Bootstrap 4 Button
- Indicate a dangerous action to a particular table row or cell with Bootstrap
- Indicate a successful action to a particular table row or cell with Bootstrap
- Indicate a warning action to a particular table row or cell with Bootstrap
- Indicate collapsible content that can be hidden or shown with Bootstrap
- Set a border to an element in Bootstrap to indicate information
- How to create a Menu Icon with CSS?
- Set a green border to an element in Bootstrap to indicate success
- Add a red border to an element in Bootstrap to indicate danger
- Set orange border on an element in Bootstrap to indicate danger
- How to create Icon Bar with CSS?
- How to create icon buttons with CSS?

Advertisements