I’m completely new to CSS. But I’m writing a mail inbox where it’s just like your typical e-mail inbox which contains 3 columns for From, Subject, Received.
Can I get some basic CSS for formatting this data correctly (alignment, columning, etc.) from which I can build upon.
Any cool interesting designs are also welcome.
I feel that this is one of the few scenarios where a
<table>layout is actually the right layout. It’s good of you to think of floating divs to perform this style layout, but the fact is you are displaying atableof data, which the only valid use of the<table>tag remaining. This also gives you the benefit of having evenly spaced columns.