A CSS property which governs what happens if content overflows it's containing box
0
votes
1answer
5 views
Mobile browsers: overflow-x creating white space off right side of viewport
Whenever I code a responsive website that can scale all the way down to the size of a watch, there is an overflow of white space off to the right of the viewport that enables the horizontal scroll ...
1
vote
1answer
671 views
IE vs Other browser offsetHeight and scrollHeight
So I have a resize handler that resizes some column headers depending on if there is a scroll on the right or not (overflow vs not overflow) to adjust the spacing to account for the scroll. The resize ...
0
votes
0answers
5 views
IE makes div huge when emptying it - Is there a workaround?
I've got a fiddle with a reproduction of what I think is a bug in Internet Explorer. Here's the basic idea:
#container {
border: 1px solid black;
position: absolute;
}
#target ...
3
votes
1answer
1k views
Bootstrap button dropdown in tab pane causing overflow
I'm using Bootstrap and have a form embedded in tab panes that contains button dropdowns. Sometimes the amount of items in the dropdowns overflows the height of the tab pane. I can always increase the ...
0
votes
0answers
5 views
Collapsing margins and hiding overflows?
this is probably a bit of a stupid question so I apologise in advance, currently my website has a container, with a header inside that, and a h1 inside that.
The margins were all set to 0, I wanted ...
0
votes
2answers
36 views
Responsive Site - Phantom width causing horizontal scroll bar
I am building myself a portfolio website that is causing me a lot of grief in trying to make it responsive. It didn't start out responsive which was my first mistake but I have gotten so close to ...
0
votes
0answers
12 views
scroll bar on div with overflow:auto and percentage height
Is it possible to create a div that adjusts to the size of the browser and is also scrollable.
I want to use overflow:auto on the div and percentage height of 90%.
The structure of the page is
...
0
votes
1answer
6 views
scroll div but not entire webview
Is it possible to prevent a uiwebview from scrolling around, but to also have a div that can scroll?
I have a jquery navbar and want a scrollable div underneath with many images. I'd like to be able ...
1
vote
1answer
2k views
How to make expander expand over grid rows
I was looking for the answer of this, but all solutions I've found was not working properly.
Here is the problem. I have interface,based on grid like the below:
| __________________________________|
...
0
votes
1answer
48 views
div contents scrolls back up when using overflow: auto in IE 10
I am trying to add multiple input elements and other data inside a div and using overflow:auto for that div (using jquery to show/hide that div)
It works fine in Firefox browser but in IE (10) the ...
10
votes
4answers
4k views
bootstrap dropdown in collapse,
I'm using Bootstrap 2.0.3, with drop-down menus inside divs which are collapsible / expandable. When the drop-down menu overflows the div, they get cut off (but they shouldn't). Jsfiddle to ...
0
votes
2answers
36 views
drop down div inside a parent with overflow set to hidden
Ive got the following for the parent div:
#parent {
overflow: hidden;
}
And the following for the inner div which is a drop down div. When click to show, a part of the drop down which goes below ...
163
votes
4answers
9k views
(-2147483648> 0) returns true in C++?
-2147483648 is the smallest integer for integer type with 32 bits, but it seems that it will overflow in the if(...) sentence:
if (-2147483648 > 0)
std::cout << "true";
else
...
0
votes
2answers
40 views
postgres + hibernate, sequence in database is negative, why?
we have a very strange behaviour on our productions system.
db: posgres 9.0.13
spring: 3.1.2.RELEASE
hibernate: 3.5.3-Final
clustered tomcat setup with 5 tomcats running the same web app and ...
0
votes
1answer
22 views
Manage vertical overflow of a container in HTML
I have an HTML structure loike this:
<div style="max-height: 520px;">
<div style="height: 250px;">
[...]
</div>
<div style="height: 250px;">
[...]
</div>
...