I have a structure that looks like this: http://peterned.home.xs4all.nl/examples/csslayout1.html - where the middle div resizes to fit the height of the window.
Inside the middle div I have tabs, but upon calling the .tabs()
method, the code automatically resizes the tabs to fit the height of the content. I want to prevent that behaviour since I'll be replacing the content of the tabs dynamically and the originally calculated height will be wrong.
I've tried setting the height of the tabs in CSS but it just ignores it.
how can I accomplish this?
* edit *
I've posted code at jsfiddle: http://jsfiddle.net/tmLZS/ from which you can see that the tabs resize themselves (in IE 9 and Chrome 14 under Windows) to the height of their content.
I want to have them be as large as possible given the window size, and have them scroll when content exceeds window size.