Tagged Questions

Determines an HTML elements minimum Height. Note: use 'height' for most versions of Internet Explorer.

learn more… | top users | synonyms

5
votes
4answers
236 views

Creating a “div sandwich” with fixed-height bread slice divs and an expandable meat div

So I have a div sandwich: three divs on top of one another. The slices of bread are both fixed-height due to background images. The meat is a 1px tall vertical repeater image. I need a way to expand ...
4
votes
5answers
205 views

CSS min-height 100% with multiple divs

Okay. I'm trying to get a page to display 100% of the height of the viewport, but the catch is the page has multiple divs that aren't always nested. I've been browsing multiple questions and other ...
4
votes
7answers
672 views

CSS white space at bottom of page despite having both min-height and height tag

I am unable to get the white space at the bottom of this page to disappear. I have both min-height and height tags in body. Any suggestions? Thanks! http://womancareolympia.webs.com/
3
votes
5answers
113 views

Why does 100% not mean 100% height?

I am trying to get some divss to expand to fill the screen, but I am struggling. I have broken down the issue on this jsfiddle. What I really want to know is why does the div, with its 100% ...
3
votes
4answers
123 views

CSS - can't get min-height working

I'm trying to make a really simple webpage. It should be a 1000px wide green, centered rectangle stretching all the way from the top to the bottom of the webpage on a red background, no matter how ...
3
votes
2answers
164 views

Min-height 100% issue, div only 100% of the displayed window, won't extend

I have an issue with my layout: I've done what I normally do to get the main content div to fill 100% of the page and extend even further if there's more content than the height of the viewable page. ...
3
votes
3answers
309 views

Full hight div not stretching

Hi there I have been working on a website for quite some time now, improving code etc. I have just noticed that, on smaller screens, the height of the white background does not stretch past all of the ...
3
votes
3answers
2k views

The inherited height of a child div from a parent with a min-height attribute

I'm sorry if this is an old issue or a known problem, but I haven't been able to find an answer online. If I have the code <style> html, body { height: 100%; width: 100%;} #div1 ...
3
votes
2answers
392 views

Specified min-height and 100% height together

I have been trawling the web trying to find an answer to my css nightmare question. The main problem seems to be getting a min-height:580px and a height:100% at the same time in all the browsers. ...
2
votes
4answers
403 views

My content disappears when I set the HTML tag to 100% height

I have a vertical layout that I want to remain centered on the page. One column stays fixed on the page while the other should scroll according to the content and there are some decorative floating ...
2
votes
6answers
2k views

Why is min-height not working?

So here's the scoop. I have a gradient applied to the background of the body element. Then I have a container (right after body) that has a background .png image applied to it. The gradient always ...
2
votes
1answer
500 views

Unable to get min-height to work on table in Firefox 3.6

I have an issue with min-height not working on my absolutely postioned table. But, I'm able to get it working in IE 6 using height (as i know IE 6 treats height like min-height) Any clues on how I ...
2
votes
2answers
3k views

How to get min-height working in Safari, Chrome on MAC

I have a page with the following CSS, it renders fine on IE and FF, but on Mac in Safari and Chrome the min-height does not seem to work and all the content collapses on top of each other when the ...
1
vote
2answers
69 views

how do I set height of container DIV to 100% of window height?

I have a couple of problems with my container DIV. For one it is not recognising the height of my content correctly (I would have thought it would extend beyond the bottom of the main content and ...
1
vote
3answers
100 views

Is it possible to slideToggle a div with Easing and set a min-height?

I have a div of which collapse and expands using slideToggle and easing. $('button').click(function () { $('div').slideToggle('2000', "easeOutBounce"); }); I want it when it slide's Up to have ...
1
vote
3answers
147 views

CSS - How to have 100% height element inside of parent

I have only made a 100% of the whole page, but this time I need a 100% height of element (div) inside of a parent. I tried to re-read this for 100% height elements inside of parents, but nothing has ...
1
vote
2answers
182 views

set table row height

My lacking skills of CSS is giving me a headache. As presented in this picture below, captured from firebug: Using a GWT like framework called Vaadin I have given a Table component the class name ...
1
vote
2answers
71 views

How to keep div at the bottom of the window if page not full, otherwise at the end of content

I have a div in a page (footer) and I want the following to happen with CSS: If the page has not enough content to fill the window, the div should be at the very bottom. If the page has enough ...
1
vote
0answers
76 views

min-height for table elements in Safari & FF

I'm having trouble using CSS min-height with tables in Safari & FF. Use the example from W3schools: http://www.w3schools.com/css/tryit.asp?filename=trycss_table_vertical-align change the td ...
1
vote
3answers
272 views

css middle div scrolling and 100% height

I'm sure this has been asked before but I couldn't find it. Please see http://jsfiddle.net/Bw5j4/1/ I want to make #room div to fit 100% between #top and #commands even if there is no content in it. ...
1
vote
2answers
74 views

CSS tabs overlapping

the following HTML code has a sample used from example 6 given on http://css-tricks.com/examples/CSSTabs/ <head> <style type="text/css"> .tabview { min-height: 250px; ...
1
vote
1answer
243 views

Height calculation differences between IE7 and Firefox/Safari

this is driving me crazy...might be something very simple and I just need another set of eyes to look at it... I have this in my CSS: #recipient { width: 31%; text-align: center; min-height: 335px; ...
1
vote
3answers
608 views

How to enforce the height of inner div to be equal to the height of the parent div, if the parent div has “min-height”?

Why in the following example the height of the inner div is not like wrapper's div ? Live demo here. HTML: <div class="wrapper"> <div class="inner">Hello</div> <div ...
1
vote
2answers
168 views

Make All Columns 100% of Window Height

I'm probably just having an off day and missing an easy fix, but I have a three column layout (you can view the test page here) and I'd like all three columns to fill the browser window. In practice, ...
1
vote
4answers
304 views

IE6 min-height dilemma

Here is my site: http://smartpeopletalkfast.co.uk/ppp/home-page.html I want the input forms to be the same height as the buttons to their right. I've done this with a min-height value so the page ...
1
vote
3answers
1k views

Calculating height using jQuery differs in Firefox and Chrome

I have a question that was already asked here, but the solution offered there did not work. The problem is that I'm using the jQuery height() function to return the height of a div. It works nicely in ...
1
vote
2answers
397 views

Expand a div to bottom of its parent container

I have a div #parent which has a min-height:400px; This div contains 2 child divs, the last of which I want to expand down to the bottom of its parent, despite the amount of content inside of it. ...
1
vote
1answer
485 views

min-height with absolute positioning

I have an area on my page #topLeft which has a minimum height set to it. Within #topLeft I have a section #heroBanners that I wish to anchor to the bottom of #topLeft - using position:absolute; ...
1
vote
3answers
432 views

min-height 100% doesnt work on inner div

I have a div called "content" which I wish to at least take up the entire height of a window. So what I did was this: body { min-height:100%; height:auto !important; /* The following ...
1
vote
5answers
153 views

Div inside div not auto expanding (screenshot)

I need the red box to expand with the blue box content, so they are always both the same size. The red box is defined as: .leftMenu{ float:left; width:20%; ...
1
vote
2answers
323 views

Problem with css footer

I'm having a problem with a webpage. I'm using the min-height property to place the footer at the bottom of the page (if content is not long enough) and after the content (if content is longer than ...
1
vote
3answers
2k views

How to implement cross browser min-height and max-height at the same time?

If only to implement max-height: max-height:200px; height:auto !important; height:200px; overflow:hidden; if only to implement min-height: min-height:40px; height:auto!important; height:40px; ...
0
votes
1answer
34 views

More HTML/CSS [min-]height problems

So I'm making a website for a friend of mine who's a lawyer. He gave me a reference to another site the layout of which he liked, and asked me if I could "make his similar to that one". The reference ...
0
votes
4answers
43 views

Make div height auto or 100%?

So I dont know exactly how to ask what I am looking for so I might just post pictures. I have this box of which it contains of 2 divs next to each other. Div with border-right and the content div: ...
0
votes
1answer
27 views

Special 2 Column Layout with CSS

I have been trying to come up with a special 2 column layout. Basically these are the requirements Fixed width and centered Height 100% Header and Footer always visible 2 column content ( Main - ...
0
votes
0answers
15 views

How can I limit the resize to a minimum & maximum height using mousemove

Wrote this code to be able to resize a div vertically, I'm having issues finding a good way to limit my height to a minimum and maximum value, each solution I've written all has the same issue, it's ...
0
votes
1answer
21 views

Div won't stretch because it's containing element is set to min-height

I'd like a div to stretch the height of the page, which it will if it and it's containing elements are all set to "height:100%;" However, in order to my sticky footer to work, I need the container to ...
0
votes
1answer
29 views

Set minHeight in activity to webView

im wondering, how set minHeight to webView in activity class, not in xml file. can i count for yours help ?
0
votes
1answer
257 views

jQuery mobile page height

For the past day I have been trying to figure out how to change the min-height styling on a jQuery mobile page when viewing in mobile safari. I have tried, inline styles, overriding ui-page styles and ...
0
votes
1answer
53 views

min-height:100%; height:100%; not working

I cant figure out what is wrong with my styles. Hope someone could help me with this. Code example: <style type="text/css"> .maindiv { overflow:hidden; border:#000 1px solid; ...
0
votes
1answer
36 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
1answer
52 views

Minimum height for div or span with empty element

When I enclose within span or div a string that happens to be an empty string or includes only white spaces, that part does not have any height, and when that span or div is further embedded into ...
0
votes
2answers
76 views

CSS min height not working

I have a large div that I want to put content in. I want the div to be padded and have a minimum height so that if there is too much text in the div it expands down to maintain the padding. But I also ...
0
votes
0answers
91 views

fieldset height 100% - Min-height and height 100% not working?

I've been trying to set the height of a fieldset at least at 100%, so that it's at least equal to the one of the element on it's right. I'm using float left and float right for the two, and they are ...
0
votes
1answer
112 views

Background-image in div will not show with position absolute

I have to put a background image in a div, if i put only image, it will not show. if i put only height it will be shown. so in this way it will be shown: <div id="big" ...
0
votes
3answers
85 views

3 Row Vertically Fluid Layout, Fluid height

I want to achieve a vertically fluid box model |-------------| | | |header 20% | |=============| | | | | |content 60% | | | |-------------| | ...
0
votes
4answers
159 views

100% Height columns

I have created a responsive layout which you can find here: http://pixelcakecreative.com/cimlife/responsive/ The left and right columns are simply placeholders for a site skin (left and right full ...
0
votes
2answers
46 views

how predefined height of a div when its min-height is 100%

plz see the below html : <head runat="server"> <title></title> <style type="text/css"> html, body { padding: 0; margin: 0; ...
0
votes
1answer
63 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
4answers
447 views

div with dynamic min-height based on browser window height

I have three divs: one as a header, one as a footer, and a center content div. the div in the center needs to expand automatically with content, but i would like a min-height such that the bottom div ...

1 2