I need to build a web based TV guide listing.
When I started I thought all I need is to build a table since it is a tabular data.
date 00:00 00:30 01:00 etc...
channel 1 show 1 show 2 show 3 etc...
channel 2 show 3 show 4 show 5 etc...
but alas this is not the situation.
While the <th>
are for every 30 min. the show length can be anything from 5min. up to a few hours.
I can cheat and make every <th>
with colspan=6 so the sub unit will be 5 min. and then play with the colspan of every show to be length in time/5(min.) and that is my colspan.
But (there is always a but), now what I have is not a table with tabular data, what I have is some kind of a spaghetti table.
What should I do?