I need help aligning two divs with text differently - one to the top left and the other centered but not on the same line.
Here's the layout I'm aiming for:
----------------------------------------------
|Backstage
|Issue 4
|
| New Fish Species
| Migrating To The Town
|
This is the code I currently have:
<div style="display:inline-block; width:565px; text-align:center;">
<div align="left" style="display:inline-block; vertical-align:top;">
<strong>
<h3 style="margin:0px;">BACKSTAGE</h3>
<h5 style="margin:0px;">Issue 4, June 16, 2003</h5>
</strong>
</div>
<div style="display:inline-block; vertical-align:top; position:absolute;">
<strong>
<h1 style="margin:0px;">New Fish Species</h1>
<h1 style="margin:0px;">Migrating To The Town</h1>
</strong>
</div>
</div>
Would appreciate suggestions on how to improve this alignment issue!