harrymossman
Technical User
Just started trying to understand css. I need to create a typical letterhead top. I.e., image in the top left corner of the page, organization name and address in the top center.
The following works well at 800 X 600 but I would like for the text position to be relative so that it looks good at any resolution.
Harry
The following works well at 800 X 600 but I would like for the text position to be relative so that it looks good at any resolution.
Code:
<DIV ALIGN="left">
<IMG SRC="../../images/logo.gif" WIDTH="91" HEIGHT="89">
</DIV>
<div style="width: 400px; margin-left: 165px">
<h1 CLASS="center">organization</H1>
<h2 CLASS="center">division</H2>
<P CLASS="center">office <br>
street address<br>
city, state 12345</P>
</DIV>
Harry