![]() |
|
|
#1 |
|
Mar 2004
10338 Posts |
I suspect that an html table format like the following is impossible. I am still trying to get it, just for fun, but am challenging you to try for it too.
Rules: 1. Don't post code until you've tested it. The obvious didn't work for me. Tip: If your html editor has a renderer, it probably doesn't render it the same as your browser. Code:
______________ | | | |____| | | |_______| |____| | | | | |____|_______| |
|
|
|
|
|
#2 |
|
Jun 2003
31×163 Posts |
Works in IE and firefox.
<html> <title>??</title> <body> <table border=1> <tr height=50> <td> Cell 1 </td> <td rowspan=2> Cell 2 </td> </tr> <tr height=50> <td rowspan=2> Cell 3 </td> </tr> <tr height=50> <td rowspan=2> Cell 5 </td> </tr> <tr height=50> <td> Cell 4 </td> </tr> </table> </body> |
|
|
|
|
|
#3 |
|
Mar 2004
21B16 Posts |
I didn't expect it to be that easy. I tried quite a few things and nothing worked, but yours works, as it should obviously work.
|
|
|
|
|
|
#4 |
|
Account Deleted
"Tim Sorbera"
Aug 2006
San Antonio, TX USA
17·251 Posts |
[FONT=monospace]<html>
<head> <title>Table</title> </head> <body> <table width="244" border="1" cellspacing="2" cellpadding="0"> <tr> <td rowspan="2" colspan="4">a</td> <td rowspan="3" colspan="7">a</td> </tr> <tr> </tr> <tr> <td rowspan="2" colspan="4">a</td> </tr> <tr> <td rowspan="3" colspan="7">a</td> </tr> <tr> <td rowspan="2" colspan="4">a</td> </tr> <tr> </tr> </table> <p></p> </body> </html>[/FONT] Attached is the page in a zip so you can see it rendered. easy task
|
|
|
|
![]() |
| Thread Tools | |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| A Challenge on the net | devarajkandadai | Miscellaneous Math | 0 | 2012-05-31 05:17 |
| Challenge | science_man_88 | Miscellaneous Math | 229 | 2009-09-07 08:08 |
| HTML validator dislikes PrimeNet | Random Poster | PrimeNet | 0 | 2009-03-30 20:41 |
| Script that searches HTML and displays HTML effect | jasong | Linux | 3 | 2007-10-22 02:34 |
| Another challenge | R.D. Silverman | Programming | 24 | 2005-07-27 21:08 |