Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
21k views

JavaScript: Scroll Position of div with “overflow: auto”

Given this HTML snippet: <div id="box" style="overflow:auto; width:200px; height:200px; border:1px solid black;"> ...
5
votes
1answer
94 views

how to drag from a scrollable div to a droppable and then drag again?

I have a scrollable list on the left of the page (overflow:auto) and several droppables on the right of the page. I found a workaround to allow an element to be dragged from the list to a container ...
1
vote
1answer
73 views

Is there a way to make a div's height depend on one sub div's content but not another?

If I have a div with two sub div's within: is it possible to have height:auto; on the parent element but only apply it to one child element, and have the other set to overflow-y:scroll;? Here is an ...
1
vote
1answer
2k views

Single finger Scrolling for inner contents (div/iframes) in iPhone Mobile Safari

Sub: iPhone mobile safari web application i need to show some part of the web page always even user scrolls. css property position:fixed does not work as we expect. using the overflow:auto ...
1
vote
1answer
190 views

How to set a div to use certain percentage of the height, while using overflow:auto to put a scrollbar?

I have the following code: div.leftnav { overflow: auto ; height: 50% ; } That, when I set a big div of this class, does not work (it doesn't show the scrollbar nor resize it to 50%, ...
1
vote
2answers
4k views

Getting rid of scroll bar for position: absolute inside of position:relative inside of overflow:auto

Hey guys, my first question here on stack overflow. Trying to get something pretty simple to work, I'm sure I'm missing something quite obvious. Still getting used to the "standard" css, too many ...