I want to put a blockquote on a center of a post and push the other text to top, right, left and bottom Like the image bellow:
https://i.stack.imgur.com/dleAF.jpg
I am using CSS like this but the quote only overlay and cover up the other element.
blockquote {
position:absolute;
width:75px;
height:75px;
border-radius:50%;
background-color:#000;
color:#fff;
left:45%;
top:#45%
}
Anybody know how to resolve the problem? Should I use Jquery? Really appreciate for any idea.
Regards