How do I center an image within a div that has text on the right side? The page layout is based on percentages and I want the image to be perfectly centered with the text floated to the right.
This is what I currently have:
IMG.logo {
display: block;
margin-left: auto;
margin-right: auto
}
<div id="logoDiv">
<p class="bold marginleft5 floatright paddingtop60">Logout</p><p class="floatright paddingtop60">Hello Bill</p>
<img alt="Logo" src="~/Content/Images/logo.png" class="logo" height="80" width="245" />
</div>
I know that if I move the text to the next line, the logo will be centered. Is there a way to keep them on the same line?