Can anyone help me figure out how to center a piece of text between two divs that are floated left and right?
See my code below:
<style type="text/css">
.left {
float:left;
padding-left:10px;
}
.right {
float: right;
padding-right:10px;
}
</style>
<div id="header">
<div class="left">
<p>Content on the left</p>
</div>
<span>Centered Text or Image/Logo</span>
<div class="right">
<p>Content on the right</p>
</div>
</div>