Quote:
Originally Posted by icearch
Because blockquote have defult marging and padding to the right which div didn't, so to accomplish the same outcome it needs to be addressed.
Padding-right should have no effect, I just forget to delete it.
|
You can forget the padding and use left/right/top/bottom margins as needed for the blockquote.
I set blockquote to a left/right margin of 1.5em. I know the default is 1em for top/bottom, but I have it in there anyway. The default left/right margins is 2em.
Code:
blockquote {
margin-top: 1em;
margin-right: 1.5em;
margin-bottom: 1em;
margin-left: 1.5em;
}