Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have a div with with property

<div id="_body_container" style="height: 500px; overflow-x: auto; overflow-y: auto; ">
</div>`

inside this div i have the table which has class views-table, this table has 100% width which makes it's parent div:_body_container scrollable.I want to fix the first and the second column of this table sticky at their positions while the left and right scroll event happen for _body_container

structure is like:enter image description here

share|improve this question
possible duplicate of HTML table with fixed headers and a fixed column? – Anuraj Oct 7 '11 at 7:45

2 Answers

up vote 2 down vote accepted

Assuming each section is a <td> element...

CSS

table {
    position: relative;
    padding-left: (width-of-your-td-elements);
}
table td:first-of-type {
    position: absolute;
    left: 0;
}

Try that out. It's late and I'm drunk, so I'm not entirely sure on this. Oh, and keep in mind this is using CSS3, which isn't supported in <= IE8.

If this works, you could just add position:absolute; left:0; to a class and target the first element that way.

share|improve this answer
Or you could use a jQuery plugin like: fixedheadertable.com – Benjamin Denhartog Oct 7 '11 at 7:55
i already tried this one. if the position absolute to the first column it's not any more inside the scrollable window it become visible to the entire page up to it's height. – punit Oct 7 '11 at 7:58
That's why you set position: relative; on the parent element. – Benjamin Denhartog Oct 7 '11 at 8:22
i think it's work, need some modification. Thanks for your attention – punit Oct 7 '11 at 8:24
1  
Actually laughed out loud at "It's late and I'm drunk, so I'm not entirely sure on this". – Matt Fletcher Mar 13 at 12:16
show 2 more comments

@vonkly is almost right about position:absolute. But you don't have to set left:0. With left:auto, you can spare position:relative too.

table {
    padding-left: (width-of-your-td-elements);
}

table td:first-of-type {
    position: absolute;
}
share|improve this answer
thanks, i got the idea about how can i make it possible. – punit Oct 7 '11 at 8:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.