背景色が異なる通常のテキストから削除されるように、ブロック引用符のスタイルを設定しようとしています。通常のテキストから目立たせるために私が見つけた最善の方法は使用することfloat:right
ですが、ブロッククォートを段落の右側に強制したくない(理想的には中央に配置したい)。この効果をどのように達成しますか?
明確にするために、ブロック引用符内のテキストは左寄せのままにしておきます。ブロッククォートの全体の形は、私が中心に置きたいものです。
.blockquote {
width: 75%;
float: right;
margin-top:20px;
margin-bottom: 20px;
padding: 20px;
background: #0fddaf;
background: rgb(15, 221, 175); /* Fall-back for browsers that don't support rgba */
background: rgba(15, 221, 175, .15);
font-family: fanwood_italic-webfont;
}
.blockquote p {
padding: 10px
}
<span class="blockquote">Being good in business is the most fascinating kind of art. Making money is art and working is art and good business is the best art.</span>