How to build a complex table by using CSS?
Posted
by Relax
on Stack Overflow
See other posts from Stack Overflow
or by Relax
Published on 2010-04-13T06:19:40Z
Indexed on
2010/04/13
6:22 UTC
Read the original article
Hit count: 312
css
Recently i ran into a complex table implementation, for example:
tr1: | td1 | td2 | td3 |
tr2: | td1 | td2 |
tr3: | td1 | td2 |
...
As this example shows, i want td1 are fixed with different width, td3 is also width fixed but at the right, td2 are all width auto to expand when screen radio changed. I'm wondering if there is a way to do this by using CSS?
© Stack Overflow or respective owner