How can I format a CSS container for quotes that span multiple paragraphs? Here is an example of the code:
#quotebox {
width: 80%;
border-top: 1px solid #242729;
padding-left: 10%;
padding-bottom: 2%;
}
I am currently using this CSS container for quotes, and sometimes the quote spans several paragraphs. Right now, I have it set up like this:
<p id="quotebox">“Lorem ipsum dolor sit amet ... ”</p>
If the quote is spread over multiple paragraphs, such as:
<p id="quotebox">
<p>paragraph 1</p>
<p>paragraph 2</p>
</p>
The formatting gets disrupted. Is there a way to display multiple paragraphs within this CSS container?