Blockquote

Blockquotes receive bottom margin, which is removed if it is the last child element. This keeps things neat and tidy for the parent container.

People often ask me if I know the secret of success and if I could tell others how to make their dreams come true. My answer is, you do it by working.

Walt Disney
<blockquote>
    <blockquote>
        <p>People often ask me if I know the secret of success and if I could tell others how to make their dreams come true. My answer is, you do it by working.</p>
        <cite>Walt Disney</cite>
    </blockquote>
</blockquote>
blockquote {
    margin: 0 0 1rem;
}

blockquote:last-child {
    margin-bottom: 0;
}