HTML CSS examples for Bootstrap Class List:pull-right
.pull-right - Float an element to the right
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> </head><!--from w ww . jav a 2 s. c om--> <body> <div class="container"> <h2>Example</h2> <div class="pull-left">Float an element to the left</div> <div class="pull-right">Float an element to the right</div> </div> </body> </html>