A CSS property which governs what happens if content overflows it's containing box
1
vote
1answer
52 views
Bootstrap Carousel Overflow:Hidden Breaks Dropup Button
With Twitter Bootstrap, the .carousel-inner style is preset as:
.carousel-inner {
position: relative;
width: 100%;
overflow: hidden;
}
such that overflow: hidden; causes a dropup button to be ...
88
votes
9answers
14k views
CSS: Truncate table cells, but fit as much as possible
Meet Fred. He's a table:
<table border="1" style="width: 100%;">
<tr>
<td>This cells has more content</td>
<td>Less content here</td>
...
0
votes
0answers
22 views
CSS positioning on jQuery drill down menu - height:auto;
I am attempting to implement a jQuery drill down menu on my site that I downloaded from Design Chemical
From what I understand about the plugin, the overall height of the drilldown menu is being set ...
6
votes
5answers
4k views
Is it possible to prevent just horizontal scrolling when overflow-x is hidden?
I have a web page that has content which extends past the right edge of the browser window. I set overflow-x: hidden on <body> to turn off the bottom scrollbar, but I can still scroll ...
3
votes
3answers
571 views
Overflow hidden and input text scrolling in Google Chrome
Here is my code snippet:
http://jsfiddle.net/7CuBV/6/
If i click and drag over the input text field, I get the div with overflow:hidden scrolling as it would do with overflow:auto. If I set ...
4
votes
2answers
34 views
CSS - placing overflow:auto inside overflow:hidden
I am creating a site right now and I need to provide support for <pre> tags with syntax highlighting and line numbers (I'm using GitHub Gists for that, but it doesn't matter).
The problem is, ...
8
votes
3answers
8k views
android webview iframe overflow
I'm currently building a web app in android. My app runs in a webview, and loads third-party contents through iframes. The iframe size is fixed and supposed not to be changed by the content loaded. In ...
0
votes
1answer
74 views
How to select an element within an embedded object?
I have a website where I am embedding another website as follows:
<object data=http://example.com width="600"
height="400"> <embed src=http://example.com/> </embed> ...
0
votes
5answers
2k views
C++ Buffer Overflow
I'm trying to teach myself about buffer overflows and exploitation in C++. I'm an intermediate C++ guy, at best, so bear with me. I've followed a few tutorials, but here's some example code to ...
0
votes
0answers
37 views
overflow:hidden not working with translation in positive direction
I came across with a weird thing lately with overflow: hidden;. I set it to an element, and then I want to transform the elements in it with translate(), when it translates in negative direction it ...
0
votes
1answer
33 views
Border expanding table but cutting off background image
I have created a fiddle of my problem in a fiddle here:
http://jsfiddle.net/tpSjf/
I'm adding a border on the table, but only for the rows, now the border expands the width of the table by 2px so ...
0
votes
1answer
19 views
Hide window scrollbar with Overflow-y set to scroll
I came across this site Teehan and Lax (http://www.teehanlax.com/) and saw that when you click on the top menu, a set of links dropsdown. The containing div is set to
#main-nav-drop{
...
-1
votes
1answer
30 views
Export a large number of data and memory overflow
I import more than one hundred data use eclipse in the computer and no problem. But when I deploy on application server it will out of memory, and I copy the local tomcat.
what is this problem?
The ...
0
votes
1answer
13 views
Overflow not triggering on expanding div (jQuery page)
I am making a chat page with jQuery with the send button on the bottom and messages going upwards. I want the div containing the messages to overflow when it reaches the top of the page, but it ...
0
votes
2answers
126 views
SMartGWT TileGrid horizontal overflow only
Using SMartGWT I created a TileGrid, and now I'm trying to set the Overflow parameter in a way such that if there is overflow the scrollbar appears only for the Horizontal navigation and not the ...