Jixed Bar Too Horozontally
Hi everyone I am currently doing a chat application and I saw jixedbar which is very suitable to manage multiple chat windows. Unfortunately, when there are too many divs within the jixedbar container element, it hid开发者_StackOverflowes the additional chat titles with overflow-x: hidden (default jixedbar). I was wondering whether there's an elegant solution to get around this problem.
* { margin:0; padding:0; }
html, body {
height: 100%;
overflow:auto;
}
body #fixedElement {
position: fixed !important;
position: absolute; /*ie6 and above*/
bottom: 0px;
}
From http://snipplr.com/view/2952/ie6-fixed-position-fix/. Will work in IE6+ and Firefox. No javascript needed to have your bar at the bottom of the page.
#fixedElement
is the id of the bar at the bottom of the page.
EDIT:
overflow-x: auto !important;
That would effectively replace the overflow-x:hidden css for that div. Might be worth a shot. Just make sure the div is tall enough to handle the scrollbar.
If the divs are nested, that could be an issue. If they are not nested, this should work.
精彩评论