0

Trying to get a column to freeze on my table. The answer by skube for this question is the closest to what I need. However, I need to go one div deeper. This causes the absolutely positioned column to not show though it is positioned correctly.

Here is the example that is not showing colA (Header A, Header B and Header C): http://jsbin.com/uxecel/667/

Any help would be greatly appreciated.

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
Mark
  • 99
  • 1
  • 1
  • 4

1 Answers1

0

It's not visible because you have left:-100px on .colA

Remove that style, and it works as (I think) you expect.

update: sorry:

Set left:0px on .colA. Also, you won't need left:-100px on the table for ie7.

Faust
  • 15,130
  • 9
  • 54
  • 111
  • That does make it visible but then the colA column is on top of my first column. – Mark May 15 '13 at 22:05
  • Accepting this as the answer, though it does not fix the problem. The question and example code had to be changed significantly in order to make it work. As a result, the question was not even valid in the first place. Thanks! – Mark May 28 '13 at 17:33