Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Float an element to the left on different screens with Bootstrap
On different devices like small, medium, large, etc, if you want to float an element to the left, then use the float-*-left class.
The following are the classes you can use −
Small Devices: float-sm-left Medium Devices: float-md-left Large Devices: float-lg-left
Let us see an example to float an element to the left on different screens −
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>Demo</h2> <div class="clearfix"> <div class="float-sm-left">This text is on the left (on small screen).</div><br> <div class="float-md-left">This text is on the left (on medium screen).</div><br> <div class="float-lg-left">This text is on the left (on large screen).</div><br> <div class="float-xl-left">This text is on the left (on extra large screen).</div><br> </div> </div> </body> </html>
Advertisements
