Open In App

.pull-left and .pull-right classes in Bootstrap 4

The .pull-left and .pull-right classes have been replaced with the .float-left and .float-right classes in Bootstrap 4. These utility classes are used to float an element to the left or right on the various viewport sizes based on the Bootstrap Grid. It works using the CSS float property.

Using .pull-left and .pull-right classes
These classes help to float the elements:



Example:




<!DOCTYPE html>
<html>
  
<head>
    <title>Bootstrap Floating utility class</title>
  
    <!-- Include Bootstrap CSS -->
    <link rel="stylesheet" 
          href=
</head>
  
<body>
    <div class="container">
        <h1 style="color:green">
          GeeksforGeeks
      </h1>
        <b>Bootstrap Floating utility class</b>
        <br>
  
        <div class="pull-left">
          This div floats to the left.
      </div>
        <br>
        <div class="pull-right">
          This div floats to the right.
      </div>
        <br>
    </div>
</body>
  
</html>

Output:

Base Classes
There are three classes which help in floating the elements:



These classes will work on all viewport sizes unless specified using their responsive versions.

Example:




<!DOCTYPE html>
<html>
  
<head>
    <title>
      Bootstrap 4 Floating utility class
  </title>
  
    <!-- Include Bootstrap CSS -->
    <link rel="stylesheet"
          href=
</head>
  
<body>
  
    <div class="container">
        <h1 style="color:green">
          GeeksforGeeks
      </h1>
        <b>Bootstrap 4 Floating utility class</b>
        <br>
  
        <div class="float-left">
          This div floats to the left.
      </div>
        <br>
        <div class="float-right">
          This div floats to the right.
      </div>
        <br>
        <div class="float-none">
          This div does not float.
      </div>
    </div>
</body>
  
</html>

Output:

Responsive floating based on viewport sizes
The responsive variations of the base classes can be used to apply the floating only on specified viewport sizes. There are four viewport size variations available to be used.

Example:




<!DOCTYPE html>
<html>
  
<head>
    <title>Responsive variations
      with float</title>
  
    <!-- Include Bootstrap CSS -->
    <link rel="stylesheet" 
          href=
</head>
  
<body>
  
    <div class="container">
        <h1 style="color:green">GeeksforGeeks</h1>
        <b>Responsive variations with float</b>
        <br>
  
        <div class="float-sm-left">
          This div floats to the left on small or wider viewports.
      </div>
        <br>
        <div class="float-sm-right">
          This div floats to the right on small or wider viewports.
      </div>
        <br>
        <div class="float-sm-none">
          This div does not float on small or wider viewports.
      </div>
  
        <div class="float-md-left">
          This div floats to the left on medium or wider viewports.
      </div>
        <br>
        <div class="float-md-right">
          This div floats to the right on medium or wider viewports.
      </div>
        <br>
        <div class="float-md-none">
          This div does not float on medium or wider viewports.
      </div>
  
        <div class="float-lg-left">
          This div floats to the left on large or wider viewports.
      </div>
        <br>
        <div class="float-lg-right">
          This div floats to the right on large or wider viewports.
      </div>
        <br>
        <div class="float-lg-none">
          This div does not float on large or wider viewports.
      </div>
  
        <div class="float-xl-left">
          This div floats to the left on extra large or wider viewports.
      </div>
        <br>
        <div class="float-xl-right">
          This div floats to the right on extra large or wider viewports.
      </div>
        <br>
        <div class="float-xl-none">
          This div does not float on extra large or wider viewports.
      </div>
    </div>
</body>
  
</html>

Output:


Article Tags :