height

height of page in javascript

I'm unable to get the height of a page in javascript when the page is larger than the screen. I thought this would get me the right height: $(document).height(); but that only gets the height of the screen, same as: $('body').height(); same as: document.offsetHeight; For some reason all these examples only return the height of ...

Div. Combine precentage and fixed size.

Is it possible? div "menu" and "submenu" needs to be 50px tall. "top" and "bottom" needs to be 60% and 40%. The behinde-the-scene-calculation would be 60% - 50px for "top". <div id="menu"></div> <div id="top"> </div> <div id="submenu"></div> <div id="bottom"> </div> ...

how do you set the jquery tabs to form a 100% height?

how do you set the jquery tabs to form a 100% height? i also need to resize the iframe within it to expand to 100% height. thank you! ...

CSS-P nightmare

I have a container DIV position:relative. Hold everything in it Then one left column one right column, classical layout. Both of them are absolute positioned inside this relative #Main. I want the right to be fluid so I say top: 0px; left: 280px; (left column width) right: 0px all works but bottom:0px does not work. I say height: 100% st...

jquery hide height

Hello, why is the height value of the test div the same before and after the hide animation? $(document).ready(function() { $("#test").hide("slow", function() { alert($("#test").height()); }); }); <div id="test"> test <br /> test <br /> test </div> ...

2 column CSS div with stretchable height

Related (possibly duplicate) questions: How do I achieve equal height divs with HTML / CSS ? Make Two Floated CSS Elements the Same Height Hello, every one, I tried for hours to create a stretchable 2 columns div but without any luck. here is my html code and my css code below it <div class="two_cols_container"> <div c...

CSS How to set div height 100% minus nPx

I have a wrapper div which contans 2 divs next to each other. Above this container I have a div that contains my header. The wrapper div must be 100% minus the height of the header. The header is about 60 px. This is fixed. So my question is: how do I set the height my wrapper div to be 100% minus the 60 px? <div id="header"></div> <div...

Expandable WinForms TextBox

I have created a textbox in a Windows Forms application that starts out at a height for entering text in a single line. But I would like the textbox to automatically increase its height if the user enters text that is wrapped within the control. Currently, for this textbox, I have the properties multiline and wordwrap set to true. I'v...

Vertical scrollbar for a column of unknown height

hi, im building a website that has a layout similar to http://maps.google.com: a header, a sidebar on the left and a map on the right. on the google maps website when the content of the sidebar exceeds the height of the screen a vertical scrollbar appears next to it (e.g. if you type 'restaurant' in the search box). Im trying to achiev...

How can a URL fragment affect a CSS layout?

Compare these 3 URLs (look at the top navigation bar in each case): http://fast.kirkdesigns.co.uk/blog as above but with the url fragment #navigation as above but with the url fragment #node-2655 Note, that the only difference is the URL fragment on the end. The first two pages display absolutely fine (in Firefox at least). It's the...

jQuery reports incorrect element height in Firefox iframe

Here a short test to demonstrate my problem. I have a page that loads an iframe: <html> <head> <title></title> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"&gt;&lt;/script&gt; </head> <body> <iframe id="iframe" src="box.html" style="width: 100px; height: 100px"></iframe> ...

How can I get the TRUE height of a div?

I'm trying to determine the height of a div. This sounds simple, but is complicated by the fact that it's only descendant contents are floated, so asking for the height/outerHeight (using jQuery)/clientHeight/offsetHeight only returns 0, even though it's clear that on the page, it is rendered certainly with a height. Here is an example o...

Sidebar Div extend entire height of container

I have one container div holding two sidebars on each side and a content box in the middle. Standard 'blog' layout. The content is way past the sidebars, and the sidebar height stops at my last sentence. How can I extend the height so that is auto extends to the bottom of the page, thus the end of the content box in the middle? ...

Force all floating DIVs to match the height of their container

Howdy, I'm trying to figure out a way to make three floating divs match the height of the largest floating div of the three (which, via the clearfix solution, is the height of their container). My question is exactly like this question, only my question needs the requirement that the comments to the answer overlook :) ("what if the two...

UITableView section header height for non-grouped table

Greetings! I know that UITableView sectionHeaderHeight is only used for grouped tables, but I'll ask anyway (in case there's some way to do this that isn't obvious) ... Is there a way to change the section header height (and with it, the font/size) for a NON-grouped table? Hoping "yes" or at least a "maybe" ... but fearing it might be ...

CSS Dynamic Heights

I have three div tags, a wrapper and two side by side within the wrapper: <div id="wrapper"> <div id="left"></div> <div id="right"></div> </div> I want to create the condition where the <div id="left"> tag is variable height, stretching the wrapper. As a result, the <div id="right"> will expand to whatever height the wrapper ha...

How do I fix the height of my view after collapsing NSSplitView?

I've got an NSSplitView with an NSScrollView in the bottom view. The problem is when I collapse, and then re-open (un-collapse) the bottom view, the height of the scroll view is beyond the height of that bottom view so the top part of the scoll view is being clipped. I've got my scroll view and my split view set to autoresize in all di...

Help with DIV layout and CSS height

Hi, Please see the screenshot. I am trying to produce a layout that allows me to apply shadow to either side of the main div using the divs left (headerLeft) and right(headerRight), I then have the content div(header) that holds the header content. This is all wrapped in a div (headerWrapper). I am using 4 divs to do this. I have it wo...

Using jQuery each to grab image height

I have a bunch of images on a page. I'm trying to use jQuery to grab the height of each image and display it after the image. So here is my code: $(document).ready(function() { $(".thumb").each(function() { imageWidth = $(".thumb img").attr("width"); $(this).after(imageWidth); }); }); <div class="thumb"><img src="" borde...

Java Swing: JList with ListCellRenderer selected item different height

Hi all, I'm making a custom ListCellRenderer. I know that you can have different dimensions for each individual cell. But now I want to have a different dimension for the selected cell. Somehow, the JList is caching the dimension for each individual cell the first time it has to calculate bounds for each cell. This is my code: public c...