What is Pull Quotes?
Category: CSS, CSS3 Tutorial | 292 views | Add a Comment |
A technique traditional to print is the pull quote, a snippet of the content that stands out from its surroundings to grab a reader’s attention as they scan pages.
Step 1: The HTML
For the pull quote basics, we can start with some HTML like the following:
<p>If ever there was ...[Big load of text]... humble pea is it.</p>
<p>Mother Nature has never created ...[Big load of text]... something so flawless.</p>
<blockquote class="pquote">
<p>It is not an exaggeration to say that peas can be described as nothing less than
perfect spheres of joy.</p>
</blockquote>
<p>The green seed ...[Big load of text]... favorite for good reason.</p>
<!-- ...and so on... -->
The pull quote obviously being a quote makes the blockquote element the perfect choice. Read more…




