This is what I'm trying to achieve

                            CONTAINER
 --------------------------------------------------------------
|                      CENTERED in CONTAINER                   |
|    -----------------------------------------   ----------    |
|   | Content Div                             | | Info Div |   |
|   | shrink to contents  OR                  | | shrink to|   |
|   | max size: (container width - info div ) | | contents |   |
|   |                                         |  ----------    |
|    -----------------------------------------                 |
|                                                              |
|    ------------------------------------------------------    |
|   |  text div: width = width of content div + info div   |   |
|    ------------------------------------------------------    |
 --------------------------------------------------------------

PICTURES (crude MSPAINT): small content example and large content example

DIV INFO: Max 192 pixels, but should shrink if necessary.

DIV CONTENT: Shrink to content. If content is large, width= remaining space in container.

DIV TEXT: width = width of CONTENT + width of INFO.

Here's what I have so far. I am not using floats because I want the content and info divs to be overall centered on the page.

The problems I am having are:

  • the text div expands to the container size.
  • if the browser window is shrunk, the info div gets bumped to the next line.

CSS

#container {
    width: 80%;
    min-width: 760px;
    padding-top: 0;
    margin: 0 auto; 
}
#content {
    max-width: 71%; /* Kinda solves the problem of bumping info div
                       to next line, but leave awkward gaps */
    width: auto;
    vertical-align: top;
    display: inline-block;
}
#info {
    width: auto;
    vertical-align: top;
    text-align: left;
    display: inline-block;
}
#text {
    margin: 10px auto;
    width: auto;
    display: block;
    text-align: left;
}

HTML

<div id="container">
<div id="main">
    <div id="content"><img src="image.jpg" />Lorem ipsum ...</div>
    <div id="info">Lorem ipsum dolor</div>
    <div id="text">Lorem ipsum ...</div>
</div>
</div>
link|improve this question

50% accept rate
3  
ASCII art wireframes make me smile. – BoltClock Feb 12 '11 at 23:03
I guess I could dynamically resize in Javascript, but I'm wondering if there is an elegant CSS solution. – encore2097 Feb 13 '11 at 1:47
Just quick suggestion: have you noticed that you have <div class="container"> and you apply css with: #container, although you should use .container? – user194076 Feb 13 '11 at 3:20
@user194076: T_T, just spent 10 minutes finding that bug – encore2097 Feb 13 '11 at 4:19
Is it possible to accept two answers? Shaz and Myles Gray each provided a part of the complete solution. Thanks to both of you! – encore2097 Feb 13 '11 at 5:10
feedback

3 Answers

Try this: http://jsfiddle.net/JbuBC/2/ http://jsfiddle.net/JbuBC/14/

link|improve this answer
Hmm, no comment. What's wrong with the template I gave? Let me know and I'll try to fix it. :) – Shaz Feb 13 '11 at 1:26
Sorry, got lost playing around with the CSS. I do appreciate the help! Basically the issue I have with giving a width %, is that the DIV INFO is not the smallest width it should be. Then DIV CONTENT should also be the smallest possible, up to the remainder of available width in the container. But once you start removing width %, then the DIV TEXT always takes 100% of the container – encore2097 Feb 13 '11 at 1:37
Okay so you want the "container" to stay the same size but the "incontainer" to change size depending on the contents of "info" and "text"; and have "info", "text", and "content" to take up as little space as possible? – Shaz Feb 13 '11 at 1:54
Almost, "container" is always 80% width (with minimum of 760px). "incontainer" shrinks to size of "content"+"info". "content" and "info" are respectively small as possible. "text" is width of "content"+"info"= width of "incontainer". Does this make sense? – encore2097 Feb 13 '11 at 2:06
1  
Alright, let's see what you think of this: jsfiddle.net/JbuBC/14 – Shaz Feb 13 '11 at 2:53
show 5 more comments
feedback

To make #text width equals to Content+Info width you need to wrap #content, #info, #text with one more div.

link|improve this answer
Tried that, #text width is still width of the container. Adding display: inline-block; fixes that but then moves everything to the left of the container and results in weird issues of going outside the container if the width is large – encore2097 Feb 12 '11 at 23:28
feedback

Add float:left; to #info and #content

Remove max-width: 71%; from #content

HTML code would be a good help if you have some?

Demo

link|improve this answer
I appreciate the help. Added some HTML and picture examples to the question and tried to clarify my goals. – encore2097 Feb 13 '11 at 1:07
@encore2097 - See edited fiddle – Myles Gray Feb 13 '11 at 1:46
If you stretch the window out -- i.e. have a large resolution -- you get an increasing gap between the DIV CONTENT and DIV INFO. – encore2097 Feb 13 '11 at 1:56
@encore2097 - Is JS allowed? – Myles Gray Feb 13 '11 at 2:10
@encore2097 New link fully working. – Myles Gray Feb 13 '11 at 2:39
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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