Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
9answers
5k views

CSS: Two 50% fluid columns not respecting min width

I'm trying to use this layout with two 50% column width instead. But it seems that when the right columns reaches its 'min-width', it goes under the left column. Is there any way to use the 'shim' ...
4
votes
5answers
1k views

CSS problem: Combination of “text-align: center” and “min-width” not working in IE 7/IE 8 compat mode

Here is my html: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" ...
3
votes
2answers
72 views

CSS min width div not forcing it's container to be the right size as expected

I have a DIV that need a minimum width. I can't use the CSS min-width as its not cross-browser. I've created a inner div with a set width. When the browser is smaller than this inner div I get a ...
3
votes
1answer
4k views

CSS: Simulating flexible width (without min-width)-

I have a DIV container of 100% width holding x divs. The last child DIV floats right, the rest float left. All child DIV's remain in a line so long as they fit in the bar (all oriented left, except ...
2
votes
3answers
89 views

Chrome mysteriously adds 3px to footer width

The footer at my site Atlantic Sentinel has a width specified at 960px and a max-width also at 960px. It looks fine in IE but Chrome adds 3px to the width. Why, I can't figure it out. Here's the ...
2
votes
4answers
75 views

Width of first row of floated elements?

Say that I have a bunch of divs floated left, in a grid like fashion. These are in a container with a fixed width. Now I'd like to know the width of the first row! so that I can compare that width ...
2
votes
6answers
332 views

jQuery min-width vs width: How to remove px?

Trying some basic jQuery and JavaScript here. The .width() gives me an integer value. The .css('min-width') gives me a value ending in px. Therefore I can't do math on this as is. What is the ...
2
votes
1answer
94 views

Fluid Design bugs in ie7

I've created a dummy layout for my latest design, but when I resize the window in ie7 to check that the min-width works, it kicks the content area to below the sidebar, whereas in all other browsers ...
1
vote
1answer
38 views

Neither min-width nor word-wrap help me to get content right shown if resolution is too small

I'm trying to develop a mobile site. Because the resolution could be low the design has to be flexible. Now I have four items (two rows with two cols): ______________________ x ...
1
vote
1answer
28 views

Is it better/more efficient to use min-width or max-width when designing for desktops/tablets/smartphones

I've been in the midst of creating a website, and I want to start using media queries. I want to target desktops, tablets, and smartphones. I'm just learning media queries, and wanted guidence in ...
1
vote
3answers
72 views

Find min width required to display item in full with jQuery?

Is it possible to find the number of pixels that is required to display a div completely? Right now, my div is at 100%, but I would really like it to be as small as the content... (can't use floats ...
1
vote
1answer
424 views

table-layout: fixed ignores td's min-width

I have a project which requires a table that includes both fixed-width and flexible-width columns. Some of the columns need to be 80px in width always, no matter what the width of the browser. The ...
1
vote
1answer
109 views

Is there any way to set a CSS min-width on an element that is floated?

I have this html: <div id="subNav"></div> <div id="feed"></div> <div id="feedBar"></div> I have floated all of these divs left. I set the width of #subNav and ...
1
vote
1answer
385 views

Inline-block + min/max-width behavior

I see in many browsers (FF,Opera,Ie) that elements I give them "inline-block" and "min/max width" , their width is automatically sets to "min-width", and not max-width, as expected. Is that normal ...
0
votes
2answers
25 views

jQuery - Calculate minWidth

View jsFiddle Attempting to set the min-Width of a <menu> by calculating the total width of all the <command> elements inside of the <menu>. I tried my best to figure it out in ...
0
votes
4answers
57 views

Div doesn't center when min-width set

I want a webpage, with the content centered, and specify a minimum width so it resizes on small screens of smartphones, but still looks fine on PCs. If I set the width of my div to 1024px, and ...
0
votes
1answer
23 views

min-width in IE 7 for asp:ListBox

I would like to apply min-width for asp:ListBox in IE 7. How can I do it? As the MSDN Docs says, min-width is supported in IE 7. But it is not working. Any alternative methods ?
0
votes
1answer
24 views

CSS min-height is fighting background-position

For the problematic behavior, try resizing the window of this web app. Thought the header and boxes stop being resized after a minimum dimension, the background image continues to position itself at ...
0
votes
0answers
37 views

Min-width automatically added in firefox (don't want that)

I have a website where I've set a div to 100% width; On either side of the div I've put in links that touches both left and right side inside the div. So when I resize the window to it's smallest ...
0
votes
3answers
68 views

How to emulate min-width in IE8

The IE8 documentation says it supports min-width, but it doesn't seem to work for me. The html I want to be a minimum width is in table cells. I saw another question here which suggested adding a ...
0
votes
1answer
50 views

Get new image dimensions for an image when given min-width & min-height

I'm looking for a function that will take in an Image object, a min width and a min height it will return a size object (or any other object with a width and a height property) with the new dimensions ...
0
votes
2answers
121 views

css min-width works on first level <li> lists but doesn't on second level in hierarchy

Basically problem is the <li>text</li> in the second level of the menu won't stretch, and defaults to whatever min-width I give it - if I declare min-width:30px and the text is longer it ...
0
votes
1answer
53 views

min-width on a three column absolute positioned layout

My current layout is based on this: http://www.cssplay.co.uk/layouts/body5.html It involves three columns which are each independently scrollable and fluid. However my web app can only shrink in ...
0
votes
2answers
151 views

3 column layout with fixed left and right column. Right column flows into center column on smaller screens

HTML Setup <div id="fixed-wrapper"> <div id="header"> <h1>Site Name</h1> </div> <div id="leftCol"></div> <div id="centerCol"></div> ...
0
votes
3answers
154 views

CSS, min-width not working in Compatability Mode

I am using a drop down menu for a website and in IE8 it works just fine, but when I go into compatability mode the drop down menu looks wrong. The background color is only as wide as the text in each ...
0
votes
3answers
165 views

How do I use inherit on min-width in CSS?

This seems really simple, but I can't get the syntax correct w/ the following scenario. I have some dropdown menus defined for the top of a screen. I want the list-items (each LI) to be AT LEAST as ...
0
votes
2answers
161 views

HTML fullscreenlayout with min-width, max-width

I have a item (e.g. a div tag, which takes 1/3 of the screen-width and has a minimum width of 500px and a maximum width of 700px. Beside it, there is another item which takes the rest of the screen. ...
0
votes
1answer
60 views

How to prevent image that extends beyond the browser window setting the width of the page?

I have a long image that is currently serving as a navigation system for a site in development. You can see it here. This navigation system will eventually be split into smaller sections, but I ...
0
votes
1answer
215 views

min-width doesn't work

I want to create a div that able to expand the width when user input the text I tried to set width:100%; max-width:600px; min-width:300px; But some how this div just stay at 600px, is that ...
0
votes
1answer
112 views

<div> with min-width value grows but then doesn't return to its min-width size

Despite my search on stackoverflow and google, I couldn't find a solution to my problem: I have a , which contains another div within another div, so: <div class="father" style="min-width: ...
0
votes
1answer
464 views

Resizable page with min-width and position absolute?

I'm working on a resizable page with a sidemenu to the right, and it almost works as supposed on this simple example: http://pastehtml.com/view/1do8cy9.html The problem though is that position auto ...
0
votes
2answers
364 views

div width problem…problem is cross browser

I have a div having two buttons inside it as |Add| and |Cancel|. I didnt set any width to that div intially and as a result they were displayed vertically not in horizontal.then i add width in % to ...
0
votes
4answers
456 views

css min-width and max-width?

.post-body p img { min-width:100%; margin-bottom:15px; } .post-body p img.thumb-small { min-width:auto !important; max-width:100%; margin-bottom:15px; } i want all my images ...
0
votes
4answers
461 views

Right floated div within a liquid-width div. How do I get this to work?

I have a div, within the div is a name in an <h4> tag (it's semantically correct with the layout) and a div with some values describing that <h4> value. I want the nested div to be on the ...
-1
votes
1answer
37 views

iphone doesn't want read the specific css?

I read a lot of articles about how build a web site for iphone, all people have more and less the same technique for optimization a website for iphone. I follow the suggestions, I use the difference ...