vForums Support > Programming & Coding :: Code Requests & Support :: > [F] HTML Table

[F] HTML Table - Posted By Fel!x (felix) on 12th Jan 08 at 11:00am
Very simple, I know, but all my tries keep failing. I think it might be because of being unfamiliar with vF and the different ids.

I just need a table which is very much like this:
30%40%30%
25%75%
100%


But of course each section corresdponding to the precentages in the boxes. Thanks for your help XD

Re: HTML Table - Posted By Michael (wrighty) on 12th Jan 08 at 12:04pm
Code:
 
  1. <table cellspacing="1" cellpadding="3" class="border" align="center" width="50%">
  2. <tr><td class="window1" width="30%"></td><td class="window1" width="40%"></td><td class="window1" width="30%"></td></tr>
  3. <tr><td class="window1" width="25%"></td><td class="window1" width="75%" colspan="2"></td></tr>
  4. <tr><td class="window1" width="100%" colspan="3"></td></tr>
  5. </table>
 


That should do what you want.

Re: HTML Table - Posted By Fel!x (felix) on 12th Jan 08 at 12:33pm
Thanks Wrighty xD

Re: HTML Table - Posted By Michael (wrighty) on 12th Jan 08 at 1:05pm
No problem! {Smile}