[パーツ]引用(blockquote) シンプルな横ラインの引用符(blockquote)デザイン

CSS HTML
 2018.02.10
 2018.03.20

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

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

browser:  65 11 20 10 
ニャン易度 

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';
}

copypet.jp

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

More Info

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