.blockquote-reverse - Indicates a blockquote with right-aligned content - HTML CSS Bootstrap Class List

HTML CSS examples for Bootstrap Class List:blockquote-reverse

Description

.blockquote-reverse - Indicates a blockquote with right-aligned content

Demo Code

ResultView the demo in separate window

<!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><!--   w w  w.  jav  a 2  s.  c  om-->
<body>

<div class="container">
  <h2>Typography</h2>
  <p>A blockquote with right-aligned content:</p>
  <blockquote class="blockquote-reverse">
    <p>This is a test. This is a test. This is a test.This is a test. This is a test. This is a test.</p>
    <footer>test</footer>
  </blockquote>
</div>

</body>
</html>

Related Tutorials