19 CSS Blockquote Designs 01 / 19
Classic Mark
A large violet open-quote glyph rendered as a CSS pseudo-element above an italic body, with a thin left rule.
The code
<figure class="cbq-classic">
<blockquote>
<p>Design is not just what it looks like and feels like. Design is how it works.</p>
</blockquote>
<figcaption>— Steve Jobs</figcaption>
</figure> <figure class="cbq-classic">
<blockquote>
<p>Design is not just what it looks like and feels like. Design is how it works.</p>
</blockquote>
<figcaption>— Steve Jobs</figcaption>
</figure>.cbq-classic {
position: relative;
max-width: 360px;
padding: 28px 28px 18px;
background: #1a1a26;
border-left: 3px solid #7c6cff;
border-radius: 6px;
font-family: Georgia, serif;
color: #e9e7ff;
}
.cbq-classic::before {
content: "\201C";
position: absolute;
top: -10px;
left: 14px;
font-family: Georgia, serif;
font-size: 64px;
line-height: 1;
color: #7c6cff;
}
.cbq-classic blockquote {
margin: 0;
}
.cbq-classic p {
margin: 0;
font-size: 14px;
line-height: 1.55;
font-style: italic;
}
.cbq-classic figcaption {
margin-top: 10px;
font-size: 12px;
color: #b8b6d4;
font-style: normal;
} .cbq-classic {
position: relative;
max-width: 360px;
padding: 28px 28px 18px;
background: #1a1a26;
border-left: 3px solid #7c6cff;
border-radius: 6px;
font-family: Georgia, serif;
color: #e9e7ff;
}
.cbq-classic::before {
content: "\201C";
position: absolute;
top: -10px;
left: 14px;
font-family: Georgia, serif;
font-size: 64px;
line-height: 1;
color: #7c6cff;
}
.cbq-classic blockquote {
margin: 0;
}
.cbq-classic p {
margin: 0;
font-size: 14px;
line-height: 1.55;
font-style: italic;
}
.cbq-classic figcaption {
margin-top: 10px;
font-size: 12px;
color: #b8b6d4;
font-style: normal;
}