Good afternoon, everyone!
I want to make my page css based, and not table-based.
Now the biggest problem I ran into is that I can't make columns.
Div's are always aligned one under the other.
So I thought here should be used <span> tag. In IE it's ok. (I hardly ever make anything that looks bad in IE and looks good in Firefox. Strange. Most people say the opposite.)
With Fx i get some very weird results when I try to resize spans and give them a background image. Somehow not the whole content has the background.
With tables this is the layout that I want:
HTML Code:
<table border=2>
<tr>
<td colspan=2>
text1
</td>
<td rowspan=2>
text2
</td>
</tr>
<tr>
<td>
text3
</td>
<td>
text4
</td>
</tr>
</table>
Any help is appreciated! Many thanks!
Last edited by gorilla : 04-02-2006 at 12:55 PM.
|