JSFiddle - React, Tailwind, and code Playground
quote/cite intendation
by CBroe
HTML
<blockquote>
<p>“Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</p>
<p>At vero eos et accusam et justo duo dolores et ea rebum.”</p>
<cite> Some douche, 2005</cite>
</blockquote>
CSS
body { padding:2em; }
blockquote { margin:0; }
blockquote p { margin:0 0 1em 0; }
blockquote p:last-of-type { display:inline; padding-right:1em; }
xblockquote p:last-of-type:after { content:"x"; display:inline-block; background:green; }
blockquote cite { float:right; margin:.5em 2em 0 0; }