开发者

How to add a scrollbar to jQuery tabs

开发者 https://www.devze.com 2023-01-23 03:14 出处:网络
Please visit my page. And if you click other tabs, you\'ll see what my problem is. The tab DIV will go over the line of my wrapper.

How to add a scrollbar to jQuery tabs

Please visit my page.

And if you click other tabs, you'll see what my problem is. The tab DIV will go over the line of my wrapper. I tried to figure out if there's any option to add scroll开发者_如何学运维 or not, and there is not!

Also tried to set the height value to DIV of tab. But it didn't work.

What I want is to add a scoll IN the tab DIV. so no matter how long the content of tab is, the Wrapper DIV stays the same.

Thanks for your help!


This CSS rule should be enough:

#tabs {
    height:100%;
    overflow-y:auto;
}


Just set a css property overflow:scroll or overflow:auto along with a height and you should get standard scrollbars being rendered on whichever div you want.

If you just want vertical scroll bars then use overflow-y:auto

0

精彩评论

暂无评论...
验证码 换一张
取 消