Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a div element with style attached:

.mypost {
    border: 1px solid Peru;
    font-family: arial;
    margin: auto;
    min-width: 700px;
    width: 700px;
}

I am diplaying WordPress post contents inside the DIV block but for simplicity let assume that there is only one <img> inside the DIV. I want my div to be minimum 700 px wide and adjust the width if image is wider than 700 px.

What are my options to achieve that? Please advice.

UPDATE

See my Fiddle http://jsfiddle.net/cpt_comic/4qjXv/

share|improve this question

4 Answers

One way you can achieve this is setting the div display: inline-block;. It is by default a block element, which will always fill the width it can fill (unless specifying width). inline-block's only downside is that IE supports it correctly only from version 8. IE 6-7 only allows setting it on naturally inline elements, but there are hacks around this.

There are other options you have, you can either float it, or set position: absolute on it, but these also have other effects on layout, you need to decide which one fits your situation better.

jsFiddleDemo

share|improve this answer

You could try using float:left; or display:inline-block;.

Both of these will change the element's behaviour from defaulting to 100% width to defaulting to the natural width of its contents.

However, note that they'll also both have an impact on the layout of the surrounding elements as well. I would suggest that inline-block will have less of an impact though, so probably best to try that first.

share|improve this answer
+1 Because we basically say the same. – bažmegakapa Jun 2 '11 at 10:41

EDIT2- Yea auto fills the DOM SOZ!

check out this fiddle

http://jsfiddle.net/ppumkin/4qjXv/2/

http://jsfiddle.net/ppumkin/4qjXv/3/

and this page

http://www.webmasterworld.com/css/3828593.htm

Removed original answer because it was wrong.

The width is ok- but the height resets to 0

so

 min-height: 400px;
share|improve this answer
This won't work. width: auto will make the div fill up the whole space. – bažmegakapa Jun 2 '11 at 10:43
Thanks but it does not keep minimum width. Remove the image and see. – Captain Comic Jun 2 '11 at 12:14
min-height needs to be set – ppumkin Jun 2 '11 at 13:53

Try to remove the "width" directive line, so the div will fit with the contents.

share|improve this answer
1  
then DIV is as wide as screen – Captain Comic Jun 2 '11 at 10:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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