コピペでできる!CSSとhtmlだけのわかりやすい引用符(blockquote)デザイン13選

CSS HTML
 2018.02.10
 2018.03.17

ブログを書いたりしていると案外使うのが、引用符(blockquote)です。
デフォルトのままだと引用なのか何なのかわかりにくいので、パッとわかりやすいものにしませんか。
htmlとcssだけでできる引用符(blockquote)デザインを集めました。

ちなみに、サンプルで使用した引用はドイツの哲学者で音楽家の「アルベルト・シュヴァイツァー」が残した「人生の惨めさから逃れる方法は二つある。音楽と猫だ」という言葉です。
browser:  65 11 20 10 

わかりやすい引用符(blockquote)デザイン[14種]

シンプルな引用符(blockquote)デザイン

ニャン易度
There are two means of refuge from the miseries of life: music and cats.
<div class="cp_quote">
<blockquote cite="" data-author="Albert Schweitzer">
There are two means of refuge from the miseries of life: music and cats.
</blockquote>
</div>
*, *:before, *:after {
	font-family: 'FontAwesome';
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_quote {
	position: relative;
	width: 90%;
	margin: 1em auto;
	border-right: 1px solid #da3c41;
	border-left: 10px solid #da3c41;
	background: #ffffff;
	box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
/* アイコン */
.cp_quote::before, .cp_quote::after {
	font-size: 2em;
	position: absolute;
	color: #cccccc;
}
.cp_quote::before {
	top: 0.5em;
	left: 0.3em;
	content: '\f10d';
}
.cp_quote::after {
	right: 0.5em;
	bottom: 0.3em;
	content: '\f10e';
}
/* 引用 */
.cp_quote blockquote {
	padding: 0.5em 1em 4em 1em;
}
/* 引用元名 */
.cp_quote blockquote::after {
	position: absolute;
	right: 4em;
	bottom: 0.5em;
	display: block;
	content: '00' attr(data-author);
}

カード型の引用符(blockquote)デザイン

ニャン易度

There are two means of refuge from the miseries of life: music and cats.

Albert Schweitzer

<div class="cp_quote">
<blockquote cite="http://">
<p>There are two means of refuge from the miseries of life: music and cats.</p>
<p class="author">Albert Schweitzer</p>
</blockquote>
</div>
*, *:before, *:after {
	font-family: 'FontAwesome';
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_quote {
	position: relative;
	width: 90%;
	margin: 1em auto;
	border-radius: 0.5em;
	background: #4dd0e1;
	box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
/* アイコン */
.cp_quote::before {
	font-size: 2.5em;
	position: absolute;
	top: 0.5em;
	left: 0.5em;
	content: '\f10d';
	color: #ffffff;
}
/* 引用 */
.cp_quote blockquote {
	margin: 0;
	padding: 0.5em 0 0 0;
}
.cp_quote blockquote p {
	padding: 2.5em 1.5em 0.5em 1.5em;
}
/* 引用元名 */
.cp_quote blockquote p.author {
	padding: 0.5em 1em;
	text-align: right;
	border-top: 1px dotted #ffffff;
}
.cp_quote blockquote p.author::before {
	content: '00';
}

シンプルなアイコン付き引用符(blockquote)デザイン

ニャン易度

There are two means of refuge from the miseries of life: music and cats.

Albert Schweitzer

<div class="cp_quote">
<blockquote cite="http://">
<p>There are two means of refuge from the miseries of life: music and cats.</p>
<p class="author">Albert Schweitzer</p>
</blockquote>
</div>
*, *:before, *:after {
	font-family: 'FontAwesome';
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_quote {
	position: relative;
	width: 90%;
	margin: 1em auto;
	border-right: 5px solid #4caf50;
	background: #f0fbe4;
}
.cp_quote::before {
	font-size: 1.5em;
	position: absolute;
	top: 50%;
	transform: translate(0%,-50%);
	display: inline-block;
	width: 3em;
	height: 100%;
	line-height: 1.5em;
	padding: 1.5em 1em;
	content: '\f10d';
	color: #ffffff;
	background: #4caf50;
}
.cp_quote blockquote {
	margin: 0.3em 0.3em 0.3em 4.5em;
	padding: 0.3em;
}
.cp_quote blockquote p.author {
	text-align: right;
}
.cp_quote blockquote p.author::before {
	content: '00';
}

アイコンと上下のラインで挟んだ引用符(blockquote)デザイン

ニャン易度

There are two means of refuge from the miseries of life: music and cats.

Albert Schweitzer

<div class="cp_quote">
<blockquote cite="http://">
<p>There are two means of refuge from the miseries of life: music and cats.</p>
<p class="author">Albert Schweitzer</p>
</blockquote>
</div>
*, *:before, *:after {
	font-family: 'FontAwesome';
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_quote {
	position: relative;
	width: 90%;
	margin: 1.2em auto 2em auto;
	border-bottom: 1px solid #da3c41;
	background: #f9f0f0;
	box-shadow: 0 1em 0 #f9f0f0;
}
/* アイコン */
.cp_quote::before {
	font-size: 1.5em;
	position: absolute;
	top: 0.2em;
	right: 50%;
	left: 50%;
	display: flex;
	content: '\f10e';
	color: #da3c41;
	align-items: center;
	justify-content: center;
}
/* 引用 */
.cp_quote blockquote {
	padding: 2em 1em 1em 1em;
	margin: 0;
}
/* ライン */
.cp_quote blockquote::before,
.cp_quote blockquote::after {
	position: absolute;
	top: 10%;
	display: inline-block;
	width: 40%;
	height: 1px;
	content: '';
	background-color: #da3c41;
}
.cp_quote blockquote:before {
	left: 0;
}
.cp_quote blockquote:after {
	right: 0;
}
/* 引用元名 */
.cp_quote blockquote p.author {
	font-size: 0.8em;
	text-align: right;
	color: #da3c41;
}
.cp_quote blockquote p.author::before {
	content: '00';
}

HOVERでTweetボタンがあらわれる引用符(blockquote)デザイン

ニャン易度

There are two means of refuge from the miseries of life: music and cats.

Albert Schweitzer

Tweet

<div class="cp_quote">
<blockquote cite="http://">
<p>There are two means of refuge from the miseries of life: music and cats.</p>
<p class="author">Albert Schweitzer</p>
<p class="tw"><a href="http://twitter.com/intent/tweet?text=There are two means of refuge from the miseries of life: music and cats. - Albert Schweitzer" target="_blank"><i class="fa fa-twitter-square fa-fw" aria-hidden="true"></i>Tweet</a></p>
</blockquote>
</div>
*, *:before, *:after {
	font-family: 'FontAwesome';
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_quote {
	position: relative;
	width: 90%;
	margin: 2em auto;
	border-left: 3px solid #00bcd4;
}
.cp_quote::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	content: '';
	transition: all 0.4s ease-out;
	background:rgba(0,188,212,.3);
}
.cp_quote:hover::before {
	width: 100%;
}
/* ツイート */
.cp_quote .tw {
	font-size: 1em;
	line-height: 1.5em;
	position: absolute;
	top: calc(50% - 0.75em);
	left: 50%;
	display: inline-block;
	width: 8em;
	height: 1.5em;
	-webkit-transform: translate(-50%,100%);
	transform: translate(-50%,100%);
	transition: all 0.3s ease-out 0.2s;
	text-align: center;
	opacity: 0;
	border-radius: 0.3em;
	background: rgba(52,152,220,1);
}
.cp_quote .tw a {
	display: block;
	text-decoration: none;
	color: #ffffff;
}
.cp_quote .tw a:hover {
	border-radius: 0.3em;
	background: rgba(40,125,182,1);
}
.cp_quote:hover .tw {
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	opacity: 1;
}
/* 引用 */
.cp_quote blockquote {
	margin: 0;
	padding: 0.5em 1em;
}
/* 引用元名 */
.cp_quote blockquote p.author {
	text-align: right;
}
.cp_quote blockquote p.author::before {
	content: '00';
}

海外のメッセージカードのような引用符(blockquote)デザイン

ニャン易度

There are two means of refuge from the miseries of life: music and cats.

Albert Schweitzer

<div class="cp_quote">
<blockquote class="outer">
<div class="inner">
<p>There are two means of refuge from the miseries of life: music and cats.</p>
<p class="author">Albert Schweitzer</p>
</div>
</blockquote>
</div>
*, *:before, *:after {
	font-family: 'FontAwesome';
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_quote {
	position: relative;
	width: 85%;
	margin: 1em auto;
}
/* 枠 */
.cp_quote .outer:before,
.cp_quote .outer:after,
.cp_quote .inner:before,
.cp_quote .inner:after {
	position: absolute;
	width: 80px;
	height: 80px;
	content: '';
	border: 20px solid #faf6e0;
	border-radius: 50%;
	background: transparent;
	-webkit-box-shadow: inset 0 0 0 1px #cccccc;
	        box-shadow: inset 0 0 0 1px #cccccc;
}
.cp_quote .outer:before,.cp_quote .outer:after {
	top: -40px;
}
.cp_quote .inner:before,.cp_quote .inner:after {
	bottom: -60px;
}
.cp_quote .outer:before {
	left: -60px;
	clip: rect(40px, auto, auto, 40px);
}
.cp_quote .outer:after {
	right: -60px;
	clip: rect(40px, 40px, auto, auto);
}
.cp_quote .inner:before {
	left: -40px;
	clip: rect(auto, auto, 40px, 40px);
}
.cp_quote .inner:after {
	right: -40px;
	clip: rect(auto, 40px, 40px, auto);
}
/* 引用 */
.cp_quote blockquote {
	margin: 0;
}
.cp_quote .outer,.cp_quote .inner {
	position: relative;
	display: block;
	border: 1px solid #cccccc;
	background: #faf6e0;
	z-index: 999;
}
.cp_quote .outer {
	padding: 20px 0;
	border-width: 1px 0;
}
.cp_quote .inner {
	margin: 0 -20px;
	padding: 0 3em;
	border-width: 0 1px;
}
.cp_quote .inner p {
	margin: 0 0 0 0;
}
/* 引用元名 */
.cp_quote blockquote p.author {
	margin: 0;
	text-align: right;
}
.cp_quote blockquote p.author::before {
	content: '00';
}

シンプルな横ラインの引用符(blockquote)デザイン

ニャン易度

There are two means of refuge from the miseries of life: music and cats.

Albert Schweitzer

<div class="cp_quote">
<blockquote cite="http://">
<p>There are two means of refuge from the miseries of life: music and cats.</p>
<p class="author">Albert Schweitzer</p>
</blockquote>
</div>
*, *:before, *:after {
	font-family: 'FontAwesome';
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_quote {
	position: relative;
	width: 90%;
	margin: 2em auto;
}
/* 引用 */
.cp_quote blockquote {
	margin: 0;
	padding: 0.5em 1em;
	text-indent: 1.5em;
	color: #333333;
	border-left: 2px solid #666666;
}
/* アイコン */
.cp_quote blockquote:before,
.cp_quote blockquote:after {
	position: absolute;
	color: #999999;
}
.cp_quote blockquote:before {
	top: 1.5em;
	left: -0.5em;
	content: '\f10d';
}
.cp_quote blockquote:after {
	right: 1em;
	bottom: 3em;
	content: '\f10e';
}
/* 引用元名 */
.cp_quote blockquote p.author {
	margin: 0;
	text-align: right;
}
.cp_quote blockquote p.author::before {
	content: '00';
}

左側に発言者右に発言をつける引用符(blockquote)デザイン

ニャン易度

There are two means of refuge from the miseries of life: music and cats.

<div class="cp_quote">
<blockquote cite="http://">
<p>There are two means of refuge from the miseries of life: music and cats.</p>
<aside>
Albert Schweitzer
</aside>
</blockquote>
</div>
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_quote {
	position: relative;
	width: 90%;
	margin: 1em auto;
}
/* 引用 */
.cp_quote blockquote {
	line-height: 1.5;
	position: relative;
	margin: 0 0 0 11em;
	padding: 0 0 0 1em;
	border-left: 1px solid #333333;
}
/* 引用元名 */
.cp_quote blockquote aside {
	font-weight: bold;
	position: absolute;
	bottom: 0;
	left: -10em;
	width: 9em;
	text-align: right;
}

大きなアイコンが印象的な引用符(blockquote)デザイン

ニャン易度

There are two means of refuge from the miseries of life: music and cats.

Albert Schweitzer

<div class="cp_quote">
<blockquote class="card">
<p>There are two means of refuge from the miseries of life: music and cats.</p>
<p class="author">Albert Schweitzer</p>
</blockquote>
</div>
*, *:before, *:after {
	font-family: Georgia, serif;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_quote {
	position: relative;
	width: 90%;
	margin: 2em auto;
}
.cp_quote blockquote {
	position: relative;
	z-index: 1;
	overflow: hidden;
	margin: 0;
	padding: 2em 2em 2em 50px;
	color: #222222;
	background: #ffffff;
	box-shadow: 0 2px 4px rgba(34, 34, 34, 0.12);
}
.cp_quote blockquote:before {
	font-size: 5em;
	font-weight: normal;
	position: absolute;
	top: 10px;
	left: 10px;
	content: '“';
	color: rgba(238, 238, 238, 0.8);
}
.cp_quote blockquote:after {
	font-size: 25em;
	font-weight: normal;
	line-height: 100px;
	position: absolute;
	z-index: -1;
	top: 110%;
	right: -32px;
	display: inline-block;
	width: 160px;
	height: 100px;
	line-height: 100px;
	content: '”';
	color: rgba(238, 238, 238, 0.8);
}
.cp_quote blockquote p {
	line-height: 1.5;
	max-width: 80%;
	margin: 0;
}
.cp_quote blockquote.card {
	color: #222222;
	background: #00bcd4;
	box-shadow: 0 1px 2px rgba(34, 34, 34, 0.12), 0 2px 4px rgba(34, 34, 34, 0.24);
}
.cp_quote blockquote.card:before, .cp_quote blockquote.card:after {
	color: #80deea;
}
/* 引用元名 */
.cp_quote blockquote p.author {
	margin: 0;
	text-align: right;
}
.cp_quote blockquote p.author::before {
	content: '00';
}

引用先の写真を使った引用符(blockquote)デザイン

ニャン易度
There are two means of refuge from the miseries of life: music and cats.

Albert SchweitzerFrench-German theologian

<figure class="cp_quote">
<blockquote>There are two means of refuge from the miseries of life: music and cats.</blockquote>
<div class="author">
<img src="img.jpg" />
<h5>Albert Schweitzer<span>French-German theologian</span></h5>
</div>
</figure>
*, *:before, *:after {
	font-family: 'FontAwesome';
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_quote {
	position: relative;
	overflow: hidden;
	width: 90%;
	margin: 1em auto;
	text-align: left;
	color: #333333;
	box-shadow: none !important;
}
/* 写真 */
.cp_quote img {
	position: relative;
	z-index: 1;
	display: inline-block;
	width: 120px;
	max-width: 100%;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
}
/* 引用 */
.cp_quote blockquote {
	line-height: 1.6em;
	position: relative;
	display: block;
	margin: 0 0 -50px 0;
	padding: 30px 50px 65px 50px;
	color: #ffffff;
	border-radius: 8px;
	background: #607d8b;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
/* アイコン */
.cp_quote blockquote:before,
.cp_quote blockquote:after {
	font-size: 50px;
	font-style: normal;
	position: absolute;
	content: '1C';
	opacity: 0.3;
}
.cp_quote blockquote:before {
	top: 35px;
	left: 20px;
}
.cp_quote blockquote:after {
	right: 20px;
	bottom: 35px;
	content: '1D';
}
/* 引用元名 */
.cp_quote .author {
	margin: 0;
	text-align: center;
	color: #607d8b;
}
.cp_quote .author h5 {
	font-weight: bold;
	padding: 0px 5px 0px 5px;
	margin: 0;
	opacity: 0.8;
}
.cp_quote .author h5 span {
	font-size: .6em;
	font-weight: normal;
	display: block;
	margin: 0;
	padding: 0 5px 0 5px;
}

引用先の写真を使った引用符(blockquote)デザインパート2

ニャン易度
There are two means of refuge from the miseries of life: music and cats.

Albert SchweitzerFrench-German theologian

<figure class="cp_quote">
<blockquote>There are two means of refuge from the miseries of life: music and cats.</blockquote>
<div class="author">
<img src="img.jpg" />
<h5>Albert Schweitzer<span>French-German theologian</span></h5>
</div>
</figure>
*, *:before, *:after {
	font-family: 'FontAwesome';
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_quote {
	position: relative;
	overflow: hidden;
	width: 90%;
	margin: 1em auto;
	color: #ffffff;
}
/* 写真 */
.cp_quote img {
	position: absolute;
	z-index: 1;
	right: 60%;
	display: block;
	width: 80px;
	max-width: 100%;
	height: 80px;
	margin-right: 5px;
	border-radius: 50%;
	object-fit: cover;
}
/* 引用 */
.cp_quote blockquote {
	line-height: 1.6em;
	position: relative;
	display: block;
	margin: 0 0 -40px 0;
	padding: 30px 50px 65px 50px;
	border-radius: 8px;
	background-color: #607d8b;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
/* アイコン */
.cp_quote blockquote:before,
.cp_quote blockquote:after {
	font-size: 50px;
	font-style: normal;
	position: absolute;
	content: '1C';
	opacity: 0.3;
}
.cp_quote blockquote:before {
	top: 35px;
	left: 20px;
}
.cp_quote blockquote:after {
	right: 20px;
	bottom: 35px;
	content: '1D';
}
/* 引用元名 */
.cp_quote .author {
	position: relative;
	display: block;
	height: 80px;
	margin: 0;
	padding: 0 35px;
	text-align: left;
	color: #ffffff;
}
.cp_quote .author h5,
.cp_quote .author span {
	position: absolute;
	left: 40%;
	padding: 3px 5px 0px 5px;
	opacity: 0.8;
}
.cp_quote .author h5 {
	font-weight: bold;
	bottom: 50%;
	margin: 0;
	color: #000000;
}
.cp_quote .author span {
	font-size: 0.6em;
	top: 100%;
	left: 0;
	white-space: nowrap;
	color: #607d8b;
}

引用先の写真を使った引用符(blockquote)デザインパート3

ニャン易度

There are two means of refuge from the miseries of life: music and cats.

Albert Schweitzer

<div class="cp_quote">
<blockquote>
<p>There are two means of refuge from the miseries of life: music and cats.</p>
<div class="author">
<img src="img.jpg" />
<p>Albert Schweitzer</p></div>
</blockquote>
</div>
*, *:before, *:after {
	font-family: 'FontAwesome';
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_quote {
	position: relative;
	width: 90%;
	margin: 2em auto;
	border-radius: 0.3em;
	background: #ffffff;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}
/* アイコン */
.cp_quote::before {
	position: absolute;
	top: -10px;
	right: calc(50% - 25px);
	left: calc(50% - 25px);
	width: 50px;
	height: 50px;
	content: '';
	border-radius: 50%;
	background: #e91e63;
}
.cp_quote::after {
	font-size: 5em;
	line-height: 1;
	position: absolute;
	top: 0;
	right: calc(50% - 2.5em);
	left: calc(50% - 2.5em);
	content: '1D';
	text-align: center;
	color: #ffffff;
}
/* 引用 */
.cp_quote blockquote {
	margin: 0;
	padding: 2em 0 0 0;
}
.cp_quote blockquote p {
	margin: 0;
	padding: 1em;
}
/* 引用元名 */
.cp_quote .author {
	line-height: 0;
	position: relative;
	padding: 0.5em;
	border-top: 1px dashed #e91e63;
}
.cp_quote .author img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}
.cp_quote .author p {
	position: absolute;
	top: 50%;
	left: calc(40px + 1em);
	margin: 0;
	padding: 0;
}

吹き出しで表現した引用符(blockquote)デザイン

ニャン易度
There are two means of refuge from the miseries of life: music and cats.

Albert SchweitzerFrench-German theologian

<div class="cp_quote">
<blockquote>
There are two means of refuge from the miseries of life: music and cats.
</blockquote>
<div class="author">
<p>Albert Schweitzer<span>French-German theologian</span></p>
<img src="img.jpg" />
</div>
</div>
*, *:before, *:after {
	font-family: 'FontAwesome';
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_quote {
	position: relative;
	width: 90%;
	margin: 2em auto;
}
/* 引用 */
.cp_quote blockquote {
	position: relative;
	margin: 0;
	padding: 1.5em 2em;
	border-radius: 0.3em;
	background: #FCE4EC;
	box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
}
/* アイコン */
.cp_quote blockquote::before {
	font-size: 2.5em;
	line-height: 0;
	position: absolute;
	top: 0;
	left: 0.3em;
	content: '\f10d';
	color: #e91e63;
	filter: drop-shadow(3px 2px 0px #FCE4EC);
}
/* 吹き出しの▼ */
.cp_quote blockquote::after {
	position: absolute;
	right: 1em;
	bottom: -8px;
	width: 0;
	height: 0;
	content: '';
	border-width: 10px 10px 0 10px;
	border-style: solid;
	border-color: #FCE4EC transparent transparent transparent;
	filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.3));
}
/* 引用元名 */
.cp_quote .author {
	position: relative;
	top: 15px;
	right: 0;
	width: 100%;
	text-align: right;
}
.cp_quote .author img {
	display: inline-block;
	width: 45px;
	height: 45px;
	border: 3px solid #e91e63;
	border-radius: 50%;
	object-fit: cover;
	filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.3));
}
.cp_quote .author p {
	font-size: 0.8em;
	font-weight: bold;
	position: absolute;
	top: -0.8em;
	right: 60px;
	width: calc(100% - 60px - 0.3em);
	padding: 0.3em;
}
.cp_quote .author p span {
	font-size: 0.6em;
	font-weight: normal;
	font-style: italic;
	display: block;
	padding: 0.3em;
	border-top: 2px solid #e91e63;
}

copypet.jp

CSS3などで新たに追加された要素・装飾方法など、日々コードを書いていないと忘れてしまったり、ささっとプロトタイプを作る時などちょっとしたことに時間をかけている暇はない。そんな時に「あ〜、あれストックしときゃよかったなぁ」って困った自分用のストックブログです。カスタマイズなどがしやすいよう、昨今のweb制作に取り入れられる一般的なコードを中心に掲載しています。

More Info

こんな記事はいかがですか?