Trying to work through this without causing chaos. I have a container div containing three floated left child divs, with the container div set to 100% height like so:
.Container {
height: 100%;
min-width: 600px;
overflow-y: hidden;
}
One of the child divs inside the container (sidebar1) has the following CSS:
border: 1px solid #E0E0DF;
bottom: 10px;
box-shadow: 2px 2px 4px #888888;
float: left;
height: 100%;
overflow-y: scroll;
width: 18%;
}
I'm dynamically adding list elements to sidebar1 using jQuery. The issue I'm facing is that the scrollbar doesn't appear until several items are added beyond view, and even when it does show up, I can't scroll all the way down to see them. It seems to be related to both parent and child divs having 100% height. How can I achieve a full-screen container div without scroll bars, while also allowing my floated child divs to maintain visibility and fully display their scroll bars?
Any advice or solution would be greatly appreciated.