Is there a way to style a quote using large quotation marks?
I've tried various methods found online, such as using Blockquote with the :before and :after CSS styles. However, I'm running into issues with using an image within a div for responsiveness reasons. Additionally, I am working within the Twitter Bootstrap framework.
Below is the CSS code and HTML representation of the quote:
blockquote {
border: none;
font-family: Georgia, "Times New Roman", Times, serif;
margin-bottom: -30px;
}
blockquote h3 {
font-size: 21px;
}
blockquote h3:before {
content: open-quote;
font-weight: bold;
font-size: 100px;
color: #889c0b;
}
blockquote h3:after {
content: close-quote;
font-weight: bold;
font-size: 100px;
color: #889c0b;
}
<div class="container">
<blockquote>
<h3>Whenever you see a successful business, someone once made a courageous decision. ~Peter F. Drucker</h3>
</blockquote>
</div>
Although the responsiveness is somewhat functional, I am having trouble achieving the desired look as shown in the example. The Quotation marks are not positioned diagonally from each other.