Responsive Blockquote

by Md Naveed

HTML

<blockquote>
    <p style="color:#666;">Socrates said, “Know thyself.” I say, “Know thy users.” They don’t think like you do.</p><cite>- Joshua Brewer</cite>

</blockquote>

CSS

body {
    text-align: center;
}

blockquote {
    color: black;
    position: relative;
    display: inline-block;
    padding: 0 0 0 50px;
    margin: 0px auto;
}

blockquote p {
    margin-bottom: 5px;
}

blockquote:before,
blockquote:after {
    content: "“";
    font-size: 70px;
    font-family: "Georgia", Serif;
    color: #28B701;
    position: absolute;
    left: -7px;
    top: -8px;
}

cite {
    float: right;
    color: black;
    font-size: 12px;
    margin: 0;
    padding: 0;
}

blockquote:after {
    content: "”";
    right: auto;
    left: 14px;
    top: 14px;
}