Stylizer offers you a simple responsive blockquote

Example :

When I consider what people generally want in calculating, I found that it always is a number.

- Al-Khwārizmī

Code :


<blockquote>
   <!-- Quote Here -->
<p> <!-- Name of author here --> </p>  
</blockquote>           
         

SCSS


// ---------------------------------------------------------------
// This file contains all styles related to the Blockquotes component.
// ---------------------------------------------------------------

blockquote {
  border-left: .1rem solid #dadee4;
  margin-left: 0;
  padding: .4rem .8rem;
  p:last-child {
    margin-bottom: 0;
  }
}