1
vote
2answers
236 views

CSS 100% width scrollbar (overflow-x) within a table cell

it's my first post. Finally I decided to join you all at stackoverflow! My problem is about an horizontal scrollbar which has to fit 100% to its container. In the following example you'll find ...
-1
votes
4answers
59 views

Width procent and overflow scroll

I have one div with some code inside (like textarea) and i want to fix to 99 % from parent element. It ok, but if the code is to big i need to put overflow-x:scroll to not get out from parent element. ...
0
votes
0answers
200 views

How to change the width of the sherlock action bar overflow menu item?

The overflow menu item is too wide, I need it to be narrower. This is what it looks like right now:
0
votes
3answers
125 views

overflow:hidden with variable 100% width

I have some side by side lists in a container div. The container div needs to be a width of 100%. Any lists within the container should overflow out of the window should they exceed the browser ...
0
votes
0answers
58 views

3 div's next to each other, total width (of the 3 divs) bigger then main div

I have 3 divs next to each other in a white frame. But the 2 outside divs needs to be placed on the end of the box (outside the div). The 3d div doesn't fit cause of the width. Is there a possibility ...
0
votes
1answer
76 views

How to set div with image in it, outside the websites width, without scroller to appear?

I have a website with two divs aside the main body, on the left and right side, and both of them have images which are approximately 500px in width, combined with the main body width of 980px (it ...
0
votes
0answers
949 views

image slider width wider than wrapper, wont overflow and center when its get to the proper width of the site

I am currently building a WordPress site and have a issue with a slider. The slide image is 1200px wide but the site is 945px. I need the image to always stay centered. It's fine when the browser is ...
0
votes
0answers
450 views

CSS max-width to match parent width

I am having a problem with the width of a code block I have inside of a list element. This list element is set by JavaScript, as it is used with Swipejs, to the width of the page. However, the problem ...
0
votes
1answer
58 views

Any idea why these two boxes are offset?

In the fiddle below I have two inline-block DIVs that are the same size. They have overflow set to auto and have content in them. The second DIV has a rather large Y offset but I can't figure out why. ...
1
vote
1answer
432 views

How to overflow background Image off screen

Right now I'm coding a site where all of the content is positioned in the center of the page. I want a little plane icon to be positioned with its trail running off the right side of the screen. See ...
0
votes
1answer
229 views

Lots of Float:left Elements. Force them to go beyond container's width instead of jumping below?

I have a fixed width container and a lot of divs inside with float:left applied to them. However, when I add some more divs inside they go below the first ones, like on a new line. I need them to go ...
0
votes
3answers
648 views

Auto-width a child div with a parent with fixed width and overflow: hidden

My problem is a bit difficult to explain. I would like a div to stretch so all of his floated childs stays on the same line. The problem is that the parent of the container has a fixed width and his ...
0
votes
1answer
316 views

100% Width Creating Horizontal Scroll Bar

I'm creating a fluid website where the width is set to 100%. Everything works fine, but I've noticed when I shrink the browser width to around 751px, a horizontal scroll appears. Problem is, I've set ...
0
votes
1answer
515 views

How to fix internet explorer 9 overflow with form elements displayed in a list and “display:table”-based layout

I want to build a HTML form with semantic and lightweight markup. Each (label, input) is nested inside a li node, child of an ul, child of the form. As far as the CSS is concerned, any ul inside a ...
1
vote
5answers
1k views

DIV:Overflow auto inside Table width: 100%

I am trying to have a div with a horizontal scrollbar inside a table that has 100% width: <div id="div1" style="border: thin solid red; width: 800px; height: 150px;"> <table id="table1" ...
-1
votes
1answer
155 views

CSS Break line when content overflows

  I am wondering how to break a line with css when content reaches the width of a div, as I am making a blogging system.  -Matthew
6
votes
2answers
10k views

CSS/HTML - fixed-width column table force expand on container

Apparently a classic problem, but the "solutions" I've found haven't worked, including various other questions on SO. If my table is wider than its container, I want my table cell width to remain ...
0
votes
2answers
282 views

Stop div width from pushing it out of place

I've got 2 divs side by side. One has a fixed with of 150px (sidebar) and one adjusts to the remaining with of the parent div. <div style="margin:0 20%"> <div ...
2
votes
2answers
589 views

Curious width 100% CSS problem

I just realized that every browsers seem to have a curious render problem. This is the test case: http://jsfiddle.net/cKNQD/ 1. Please scale your browser until the bottom scrollbar appears. 2. Then ...
1
vote
2answers
944 views

Width:100% resize on window resize (CSS)

When setting my header and footer to 100% I get some strange behaviour in FF4, Safari 5 and Chrome 12 on Mac OS X. If I have my browser window at a high resolution and scale it down horizontal ...
6
votes
4answers
4k views

Width: 100% Without Scrollbars

I'm trying to make a part of my webpage that fit the width of the browser, for this I'm using width: 100%, the problem is that it shows scrollbars and I can't use overflow-x: hidden; because it will ...
2
votes
4answers
972 views

Check if scrollbars are present with Javascript?

I'm building a little sticky notes app for fun, and sometimes this happens: (It's because the first word is wider than the width of the note.) Is there a way to check whether the scrollbar is ...
1
vote
2answers
151 views

optimize jquery loop to set widths

I'm trying to stop strings in a div expanding beyond the size of their variable-sized parent divs using the tactic of setting an overflow and fixing the width. I have about 4400 dom elements on the ...
3
votes
4answers
4k views

inline divs with hidden overflow

I want to create 3 divs side by side when only one of them is visible. -------------- -------------- -------------- | visible | | invisible | | invisible | | | | | | ...
0
votes
2answers
171 views

the width problem of 3 divs

I want to put 3 parallel divs in html. div middle should be the width of 960px and center of the page, div left and div right will be both site of the div middle,the page min-width will be 1024px, ...
0
votes
1answer
86 views

CSS Width problem

I'd like to create a div that has the same width as the text's length inside it. I can do it without problem when the div is inside a DOM element that has enough width to fit the text in. But when I ...
0
votes
1answer
2k views

WebKit and overflow: hidden affecting width

I'm having a problem with overflow and width in Google Chrome/Webkit. This is a follow-up question on this question, there you will find the CSS. I need to have visibility: hidden to fix the problem ...
2
votes
1answer
461 views

how to prevent html table widths from enlarging due to huge one word

suppose I have a table: <table width="100"> <tr> <td> hi i like you you are awesome blah blah blah no no no no </td> </tr> </table> then the table will be ...
0
votes
1answer
462 views

CSS div/overflow Question: Why does the first HTML file work but not the second?

Notice how the first HTML/CSS works when you re-size the browser horizontally. It will shrink no further than around 800 pixels, but it will expand as far as you drag the right edge of the browser. ...
0
votes
2answers
455 views

Why is my menu DIV overflowing its parent?

The menu div is overflowing the parent. "Science is but a perversion of itself..." <div id="header"> <h1>TITLE</h1> </div> <div ...
0
votes
2answers
4k views

Need help getting DIV inside DIV to stretch to width of contents in Firefox

I am using a layout similar to the one from Dynamic Drive here: http://www.dynamicdrive.com/style/layouts/item/css-right-frame-layout/ The main content area (white) has overflow set to auto. I have ...
1
vote
3answers
3k views

CSS overflow with long URL

Ok, so I have google ads inside a 160x600 container. New ads are shown randomly on refresh. When an ad pops up with a long URL that doesn't contain any dashes or any characters for it to break at, it ...