I've got something like the following situation:
<div id="container">
<div id="prev">
prev
</div>
<div id="content">
some content
</div>
<div id="next">
next
</div>
</div>
Where what I'd like is for the result to look something like this:

Note that prev and next are centered vertically in reference to Content and that all of it is centered horizontally on the page.
Sorry if this has been covered before but there seems to be a lot of different ways to do similar things and I'm unsure of which apply to this situation. CSS3/HTML5 isn't really a problem as long as it works in Chrome, Safari, Firefox and maybe IE (not crucial).
EDIT: Also, I'm not sure if this is really clear in the question, but I don't know the size of Content. It could be anything.
EDIT 2: Additionally, content is usually an image.