Bootstrap pull-right class


Use the default <blockquote> around any HTML text. You can also add a <small> tag for identifying the source of the quote and right aligning the blockquote using class .pull-right:

Example

 Live Demo

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap pull-right class</title>
      <meta name="viewport" content="width=device-width, initial-scale=1">
      <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css">
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
      <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
   </head>
   <body>
      <blockquote>
         <p>This is a default blockquote example. This is a default
            blockquote example. This is a default blockquote
            example.This is a default blockquote example. This is a
            default blockquote example.</p>
      </blockquote>
      <blockquote>
         This is a blockquote with a source title.
         <small>Someone famous in <cite title = "Source Title">Source Title</cite></small>
      </blockquote>
      <blockquote class = "pull-right">This is a blockquote aligned to the right.
         <small>Someone famous in <cite title = "Source Title">Source Title</cite></small>
      </blockquote>
   </body>
</html>

Updated on: 12-Jun-2020

237 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements