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

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>
</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>

Updated on: 17-Jun-2020

10K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements