Hi guys.
Another numpty question but if I want to set up a table using pure css, how would I go about it?
I have 5 columns:
<--Col1--><--Col2--><--Col3--><--Col4--><--Col5-->
Each column is 150 pixels wide.
I tried doing a single class:
thinking that would add another 150 pixel column on the left of the previous one - it didn't work
As always - advice appreciated!
Cheers
M.
Another numpty question but if I want to set up a table using pure css, how would I go about it?
I have 5 columns:
<--Col1--><--Col2--><--Col3--><--Col4--><--Col5-->
Each column is 150 pixels wide.
I tried doing a single class:
Code:
#col {
width: 150px;
position: relative;
}
thinking that would add another 150 pixel column on the left of the previous one - it didn't work

As always - advice appreciated!
Cheers
M.