

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Bootstrap 4 .float-right class
Use the float-right class in Bootstrap to place an element on the right.
The default text alignment is on the left and use the float-right class to align text on the right as in the following code snippet −
<div class="float-right"> This text is on the right. </div>
It can be used on any other element as well, for example, <h1>, <p>, etc −
<p class="float-right"> On the right </p>
You can try to run the following code to implement the float-right 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> </head> <body> <div class="container"> <h2>Example</h2> <div class="clearfix"> <div class="float-right">This text is on the right.</div><br> <div class="float-left">This text is on the left.</div><br> <div class="float-none">Float Removed</div><br> </div> </div> </body> </html>
- Related Questions & Answers
- How to work with Bootstrap 4 .float-*-right class
- Bootstrap 4 .float-left class
- Bootstrap 4 .float-none class
- Bootstrap 4 .rounded-right class
- Bootstrap 4 .border-right-0 class
- Float an element to the right with Bootstrap 4
- Bootstrap pull-right class
- Bootstrap class pull-right
- Bootstrap 4 .rounded-circle class
- Bootstrap 4 .card-text class
- Bootstrap 4 .border-danger class
- Bootstrap 4 .border-success class
- Bootstrap 4 .border-secondary class
- Bootstrap 4 .border-warning class
- Bootstrap 4 .border-white class
Advertisements