See the box stuck the bottom right. Right now it as a fixed height of 300px. Instead I would like to be just as high as necessary. Meaning I need the height to adjust automatically to the content. When I remove the height property it assumes full height.

Additionally, I would like to be able to "refresh" the height whenever I update the content via javascript (jQuery).

link|improve this question

65% accept rate
That looks much better than your first design (I remember your older questions). – thirtydot Mar 11 '11 at 0:15
thanks ;) they agreed to put it at the bottom instead of sides. – nute Mar 11 '11 at 0:28
feedback

3 Answers

up vote 2 down vote accepted

Your seeing a height of 100% because your style for html, body, div, iframe specifies height of 100%. To override this, just set your height to "auto". Like this:

div.sidebar {
  border-left: thin solid #66CCFF;
  border-right: thin solid #66CCFF;
  bottom: 0;
  display: inline-block;
  height: auto; /* <-- New Value */
  /*height: 300px; <-- Old Value */
  overflow: hidden;
  position: absolute;
  right: 40px;
  width: 200px;

}

This will size the box so that it is only the same size as the content. You might also want to consider using the max-height property to set an upper limit though. Say something like max-height:640px;.

link|improve this answer
feedback

Change this properties:

div.sidebar {
  position: fixed;
  height: auto;
}

I think you won't need jquery to change height, just change content.

link|improve this answer
all very good correct answer, I had to pick one :) Thanks – nute Mar 11 '11 at 0:30
Cheers :) As long as it gets the work done. Although if you plan to always have this element floating regardless to the rest of the page I would use fixed position. It just feels right :D – Ivan Ivanić Mar 11 '11 at 0:32
actually you are right, I used yours, I didn't notice they were different. – nute Mar 11 '11 at 0:40
feedback

Change height: 300px; to height: auto;.

link|improve this answer
all very good correct answers, I had to pick one :) Thanks – nute Mar 11 '11 at 0:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.