Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
4answers
15k views

CSS Max Height Property

Is there a good cross-browser way to set a max-height property of a DIV and when that DIV goes beyond the max-height, it turns into an overflow with scroll bars?
10
votes
2answers
11k views

Using CSS text-overflow to vary the number of lines of text within an element of a set height

I'm deep into some iPhone (Safari/WebKit) web app development at the moment and want to have items of a set height with title text and body text such that 3 lines are always showing. If the title text ...
6
votes
3answers
296 views

Max div height in Internet Explorer

How can I have a div of static 60px height in Internet Explorer?
4
votes
1answer
464 views

Problem with max-height scrolling DIV in IE9

I'm seeing strange behavior with a scrolling DIV in IE9. I'm using the max-height CSS tag on the DIV. The DIV grows taller when I enter text into input boxes contained within the DIV. This only ...
2
votes
3answers
76 views

How to get maxWidth and maxHeight parameters of ImageView?

I have ImageView declared at xml: ... <ImageView android:id="@+id/image" android:layout_width="wrap_content" android:layout_height="wrap_content" android:maxHeight="60dip" ...
2
votes
1answer
916 views

jQuery UI Dialog and maxHeight in Internet Explorer

Here's my current code: $("#DialogScroll").dialog({ bgiframe: true, autoOpen: false, maxHeight: 600, width: 550, modal: ...
2
votes
1answer
592 views

Max-height ignored in Firefox, works in Chrome and Safari

I'm making a slideshow of images with the class "Display". I want to limit the height and width of the image to a maximum of 80% of the window's, so that there won't be a need for a scroll bar at any ...
2
votes
5answers
9k views

Using max-height on DIV element

I have a DIV element that is set to contain a table element. The table element will have anywhere from 0 to upwards of 350 rows. I thought the easiest way to size this DIV element was to apply the ...
1
vote
3answers
109 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
1answer
40 views

HTML/CSS - Possible way to scale image to fit a certain dimension while maintaining the its aspect ratio?

Is there any way that I can use just HMTL and CSS to force an image to resize to fit a fixed dimension while maintaining its aspect ratio (without stretching/shrinking)? Consider my required ...
1
vote
4answers
573 views

How to determine the screen width/height using C#

I want to set the Width/Height of a Window dynamically based on the User Screens maximum width/height. How can I determine this programmatically.
1
vote
1answer
238 views

How can I constrain a table cell (td) height based on a neighbouring cell height?

I'm using XSL to generate a report based on an xml flowchart, resulting in a large HTML table from the data showing the following columns: a node's name a list of information about that node its ...
1
vote
2answers
331 views

CSS Max-Height with Hidden Overflow

I've looked for quite some time now to find a question identical to mine, and have had no luck. Most of those allowed for fixed-heights whereas mine has to be percentages. I'm using Google Chrome ...
1
vote
1answer
773 views

CSS max-height and max-width at the same time not working in IE8?

I have the following css defined in a style applied to a panel in my aspx page. max-height: 70%; overflow: auto; max-width: 70%; overflow: auto; In Mozilla, I can resize my browser window and the ...
1
vote
1answer
764 views

HTML: Scale images using max height/width

I've got a web page that displays a bunch of images. I want to make sure none of the images are greater than 200 pixels wide and 200 pixels in height. If one is, I'd like it scaled down so that the ...
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
0answers
95 views

Javascript-CSS: Filling the Viewport

Here is a very basic question about filling the viewport. Its a simple bit of html/js, involving a table and a canvas. I can get the canvas filling the area of the screen I want it to. But I cannot ...
0
votes
3answers
50 views

How can I determine the element is using height or max-height?

How can I determine the element is using css height or css max-height? for instance, I have these two elements, <div style="height:100px">fixed</div> <div ...
0
votes
1answer
79 views

max-height % not working in all browsers

Im trying to set the max-height in percentages on a li tag but doesn't seem to work (currently working in Chrome/Mac), however setting in pixels works. I need the items to scale with browser ...
0
votes
2answers
137 views

Get Pixel height of Centimetre unit CSS

We're writing our own web app and we need the user to have a (fairly) accurate visualisation of their printed documents on-screen. I'm using the centimetre unit in CSS to try and replicate an A4 page. ...
0
votes
1answer
381 views

How to set the max height of a Layout in android?

I have to implement layout like this; The layout should wrap the content if the content within it is less. If the content goes beyond some size, like 300dp, it should be set to max heght(300dp) and ...
0
votes
0answers
258 views

Dynamic content exceeds max height of container DIV in Firefox?

I'm having trouble in FF with a container DIV that seems to have reached it's max height, even though the max is set to 100% to expand with the content within. Ironically, my IE8 is not having this ...
0
votes
0answers
313 views

Scrollbar problem with IE: IFrame inside div with overflow:auto

this is my first post and I want to salute all posters on stackOverflow, a very very helpful site. I searched into this for days, found a lot of similar stuff but i still have this problem. I have an ...
0
votes
3answers
835 views

Max height % not working in IE8?

[CONFIRMED: IE9 suffers the same bug! :'( ] I have a div that is like a photo-frame style thing, which contains an img, and two divs. This outer div has a max-width (80%) that works beautifully. ...
0
votes
2answers
944 views

container background repeat-y not working

Have the following html code: <div id="container"> <div id="container2"> ... </div> </div> and the following css: #container { background: #323232 ...
0
votes
1answer
790 views

iFrame and “max-height”

Any ideas for using max-height on a borderless/scrolless iFrame so if it ends up being too tall the browser doesn't render a giant black area to fill in the rest of the iFrame? I've tried setting ...
0
votes
1answer
259 views

Max-height scales image perfectly in FF, but Chrome has scrollbars

So I want a page that's nothing but a square image which scales up to the height of the window. Fine, great, I do: img { max-height:100%; height:100%; width:auto; } and stick an in a ...
0
votes
1answer
1k views

max-width and max-height for scaling images in Internet Explorer

I'm in the process of creating a gallery which displays several formats of images (wide, square and tall) in a fixed space. The ideal solution would be to have all the images to be the same ...
0
votes
2answers
269 views

Div max-height too tall

I am doing some of my first web dev, and had a question about the max-height css property. Here's my code: div{ max-height:10px; } Whenever I create a new div, everything works fine, but ...
0
votes
2answers
3k views

Using CSS max-height on an outer div to force scroll on an inner-div

I have an outer div with a variable height (and max-height) that's set with a specific pixel amount by JavaScript, containing two divs within. The 1st div is intended to hold a variable amount of ...
0
votes
1answer
272 views

How to make max-height work properly in IE6,IE7?

max-height:600px; The above works as height:600px in IE7,and not working at all in IE6.
-1
votes
1answer
45 views

how to calculate r-tree's height?

i have a deep doubt about r'tree's height. if leaf node : N, fanout : m then r'tree's max height : log m (N) - 1 ? why this differs from b'tree?