A CSS property which governs what happens if content overflows it's containing box
2
votes
0answers
81 views
How to get Mac smooth scrolling to work on an element
I've created a virtual-rendering implementation (similar to what you would find in the project SlickGrid). Everything seems to be working very well, with one problem: On Mac, smooth scrolling (the ...
2
votes
0answers
231 views
Texfield Spacing with “Stretch on Overflow” buggy?
I am currently designing a report using iReport 4.7.0. At the moment I am trying to figure out how to dynamically adjust the height of a textField, if its contents is too big for the initial height. ...
2
votes
0answers
273 views
Android overflow-y: auto scrolling problems
We are developing a android app and we have some probems with overflow-y: scroll. Because we have a sticky-footer bar we need this functionality for our content area.
When we enable overflow-y: ...
2
votes
0answers
290 views
jQuery UI Draggable-Droppable overflow:visible
Sadly, I am unable to provide any JSFiddle for this issue, as I cant seem to reproduce it outside my project.
I have a container where there are some boxes, that can be arranged using drag and drop, ...
2
votes
0answers
1k views
Overflow-y: auto and overflow-x: visible in the same time?
I'd like to put this properties for a div:
.content {
position: relative;
overflow-y : auto;
overflow-x: visible;
}
According to this page, if one is specified as 'visible' and the other is ...
2
votes
0answers
571 views
Overflow hidden not working for embedded youtube videos (within facebook like box) on the ipad
I have included the Facebook like box code on my website. However for some reason when viewed on an iPad the embedded Youtube links show outside the iframe (the other content does not). I have tried ...
2
votes
0answers
109 views
SPARC window_overflow
Suppose I have 8 windows like this figure: http://www.sics.se/~psm/sparcwin.gif
And I'm right in that situation, WIM points to w7, and I'm in window w0.
Suppose that in this window, I'm going to ...
1
vote
0answers
24 views
FB.Canvas.setAutoGrow horizontal inactive scrollbar in Firefox
I am having an issue with my FB Canvas iframe app.
What I use:
window.fbAsyncInit = function() {
FB.init({
// my app code code code
});
FB.Canvas.setAutoGrow(true);
}
+ set Fluid width ...
1
vote
0answers
28 views
Overflow doesnt work in <aside>-tag, but in <div> why?
I just spend a fair bit of time debugging my mobile application. I'm building a mobile website and implementing an inbox-like UI for one of my views.
As in a lot of mobile applications, I created a ...
1
vote
0answers
35 views
How to get the memory usage of Python object without importing any third party libraries like hpy or PySizer?
I'm writing Python test cases for testing a COM written in C++. Currently I re-write a recursion function of the COM to non-recursion in order to avoid the call stack overflow. Then I need to write a ...
1
vote
0answers
59 views
overflow hidden on safari browser
any other browser does not Show the SVG embedded like shown below with scroll bars. Safari, however does, and it seems like I can't find a way to get rid of em. Any ideeas ?
<!DOCTYPE html>
...
1
vote
0answers
255 views
Chrome is auto hiding vertical scroll bar
I have a problem.
Basically, I have 3 divs, one main container, and two divs, that will be half the width of the main container like so:
<div id="main">
<div id="col1"></div>
...
1
vote
0answers
177 views
overflow:hidden on iOS not working
http://www.andrewsmorris.co.uk/blog/
I have a sidebar that slides out when you click the button on the left, the problem however, is that on iOS I get horizontal scroll bars on the page when I click ...
1
vote
0answers
75 views
How do you make the text flow like the new my space article pages?
I'm trying to create a multi-column layout that wraps the text vertically as well as horizontally like this: ...
1
vote
0answers
122 views
body overflow: hidden don't work in mobile browser
a overflow:hidden body element works well on desktop browsers. but mobile browsers/ touchscreens ignore this behavior.
<style>
body {overflow:hidden; height:100%; width:100%;}
.content ...
1
vote
0answers
70 views
center element to parent and allow clipping without absolute positioning
I keep struggling with this one. I need to center a child within it's parent and if it's width exceeds that of the parent, allow the parent to clip it. This is easily done with position: absolute;, ...
1
vote
0answers
51 views
How to append a static element to a JS carousel?
I have a javascript-only image gallery (NextGEN wordpress plugin)
It is built dynamically with one JS file. It displays content as you click through the carousel.
The rough outline of the JS file ...
1
vote
0answers
66 views
Superfluous scrollbars
In this fiddle I have a 100% height div with content that overflows horizontally. it works as intended in IE, Firefox, and Chrome but Opera creates a vertical scrollbar to scroll the distance covered ...
1
vote
0answers
76 views
date time settings in vs2010 debugger
I use a query that takes in a datetime parameter such as:
SELECT * FROM Table WHERE logindate=@logindate
Then I used parameter to pass in the @logindate value in C#
...
1
vote
0answers
164 views
Overflow div hardly able to pinch zoom on ipad
If I make a #viewport div wrapping a #wrapper div
#viewport{
display:block;
position:absolute;
width:100%;
height:100%;
overflow-y:scroll;
-webkit-overflow-scrolling: ...
1
vote
0answers
172 views
position: absolute on Tabbed Menu Causing Overflow Problems
When I set position: absolute in my tabbed menu, I get overflow problems.
here's the link to see the issue (click on tab #one)
CSS
I've tried various jQuery and JavaScript tabbed menus but they ...
1
vote
0answers
63 views
Box model: lost parent element scrollbar
The first sample shows scrollbars correctly:
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
#parent {width:102px; height:101px; ...
1
vote
0answers
80 views
ipad object scrollbar
first timer here. I help manage a WordPress site that has an html object imbedded in a div that overflows. The scrollbar functionality works fine on pc's; however, on an ipad (and I assume an iphone ...
1
vote
0answers
132 views
Android Browser produces unexpected behavior with Overflow-y: auto
I'm trying to achieve a scroll when a table overflows a parent:
<div class="main_container">
<form id="list_wrapper">
<table>
<tbody>
...
1
vote
0answers
125 views
dojo dijit.form.Select IE8 overflow hidden
So I'm using a dojo.form.Select control and it contains really long values something like ...
0029000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Which I want to ...
1
vote
0answers
69 views
overflow: auto not working correctly with Facebook Like Comment Flyout
To save my time trying to explain it, here's a 'working' example:
http://jsfiddle.net/z56Dt/19/
When you click the 'Slide' button, the div height expands as it should. But when you click the Like ...
1
vote
0answers
228 views
Opera max-height bug within position:absolute+overflow:auto element?
I have recently encountered an issue in Opera, where it attempts to display scrollbar on a position:absolute+overflow:auto parent, when the child element has more content but with max-height set.
To ...
1
vote
0answers
598 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 ...
1
vote
0answers
216 views
Facebook Comments Box doesn't scroll within scrollable div
I'm working on a website which includes a facebook comment box within a div (div id="article") which has an overflow="auto" attribute.
The article body scrolls but the comment box extends outside the ...
1
vote
0answers
129 views
Creating a Marquee-like effect with a TextBlock in XAML
I have a TextBlock in XAML, and I am trying to create a horizontally scrolling 'marquee' of text on a button. However, the TextBlock's width gets set to the width of the parent.
As an example, say we ...
1
vote
0answers
726 views
content div with -webkit-overflow-scrolling: touch gives troubles with absolute positioned childrens on IOS devices
We're bussy programming a webapplication for tablets.
In this application we have a main content div where our contents are placed, some pages / slides have more content than the viewport allows so ...
1
vote
0answers
252 views
IE 8 overflow/ellipsis
So I'm working to get the ellipsis class working on some pages (here's a page that explains the basic fix: http://www.electrictoolbox.com/ellipsis-html-css/), and it's working for IE 6 and 7, but not ...
1
vote
0answers
111 views
Apache FOP Content overflow
I am creating a PDF using Apache FOP and am trying to make my content overflow to the next page. I have tried setting 'overflow="paginate"' in the main block however this didn't work.
Has anyone else ...
1
vote
0answers
383 views
Scrolling DIVs on iPad and Android
Ok, I am trying to wrap my mind around what exactly makes a div scrollable, and what kills that scrollable functionality on iPad and Android (so I guess any mobile webkit).
Lets say I have a ...
1
vote
0answers
577 views
Scrollbar on Android
I'm using -webkit-scrollbar property to show scrollbars at iOS and Android but when I'm scrolling the container on a Android device the content flickers according to scrollbar width.
How can I solve ...
1
vote
0answers
454 views
Android - ReferenceTable overflow (max=512) when loading big string array from resources
I have a large array of strings (about 800 items) in the resource file arrays.xml
And when a trying read it:
String[] arr = context.getResources().getStringArray(R.array.text);
I get error:
...
1
vote
0answers
50 views
Combining different overflow properties
I'm trying to create a multi-threaded navigation similar to OS X's column view:
In the markup here, I've got a list of lists sitting in a parent <nav> with a defined height. Then each li is ...
1
vote
0answers
540 views
Images overflowing the texts
I have a problem with my website in my version of Safari (Version 5.1.4).
The images from pretty photo seems to overflow over the texts.
When the page load, the image are at the right place and then ...
1
vote
0answers
65 views
IE7 filter cuts of element
I have an example here:
http://jsfiddle.net/dnHVB/1/
In IE7 filter on parent causes my inner element to get cut of like its set overflow hidden on parent.
Is there a way around this?
Thank you!
1
vote
0answers
243 views
.scrollTop() a long overflow-y:scroll div
I have a div with these settings:
#check_in_history {
position: absolute;
display: block;
top: 70px;
right: 0;
bottom: 20px;
left: 0;
overflow-x: hidden;
overflow-y: ...
1
vote
0answers
252 views
Unable to update DOM on iOS 5 without loosing content on scroll
I am currently working on an iOS webapp and have run into an odd issue. I use -webkit-overflow-scrolling: touch; to make a scrollable DIV which works great however when I update the DOM in ...
1
vote
0answers
252 views
Python upgrade 2.2 to 2.7 getting long to C long overflowexception
I'm upgrading a old project of mine,
the previous Python version was 2.2 so it is a bit of a jump to 2.7.
The most stuff is working for now ... i had a lot of has_key checks i had to change them to ...
1
vote
0answers
99 views
Div will not pick up correct image size from php generated content
I have a user file interface i'm trying to modify but my div isn't picking up the php generated content and resizing.
You can see it at: http://test3.hejmej.com (at least until the problem is ...
1
vote
0answers
317 views
Overflow Hidden and jQuery conflicting in Chrome & Safari
I've searched everywhere and can't seem to find a solution for this.
I'm using the jQuery Cycle slider in a site. It is used inside a div that currently is set to overflow hidden, while it's images ...
1
vote
0answers
275 views
Can the like button (with comments prompts) exist inside a carousel?
I have a sliding carousel of items, each of which includes its own like button. I want the like buttons to have comments; that is, when the user clicks Like, he should be presented with a prompt to ...
1
vote
0answers
353 views
console output stating bit length overflow
When I run my app I get this output to the console:
bit length overflow
code 11 bits 7->5
code 16 bits 4->5
bit length overflow
code 4 bits 6->7
bit length overflow
code 3 bits 6->7
code 0 bits ...
1
vote
0answers
373 views
Hash function w/ PHP integer overflow
I've looked through a lot of questions here on "PHP integer overflow" but I can't find anything that answers my specific question, so I hope I haven't missed an existing answer.
I want to use the ...
1
vote
0answers
128 views
Stack Overflow in multi threaded application
Hopefully someone can help me out a little bit. I have a c# application running under .NET 2.0. It's a strange app. It is listening on the network for any UDP packets. When it receives a UDP packet ...
1
vote
0answers
624 views
WPF: Issue with OverFlow Panel on Toolbar control
I'm having an issue working with the Toolbar control for WPF in Blend 3:
I have a Toolbar control that is binded to a collection so that it displays both icons and labels for each one of the actions ...
0
votes
0answers
11 views
tinyscrollbar doesn´t work properly
I downloaded the tinyscrollbar to design my own scroll.
However, I have noticed that scrolling images depending on the items you have in it, but not do the same with text, in this case paragraphs. ...

