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

Using html/CSS I am trying to put a little div with two images inside it to the bottom right outside of a large centered(with l/r margins set to auto)vertically elastic, but 400px wide div filled with lots of stuff inside. I just can't seem to get exactly what I need.

Here is what I'm trying to get so that if the window is too wide, the green box stays right next to the red one with the empty space going to the right of both boxes. If the window isn't wide enough, the user would have to scroll to the right to see the green box.

desired layout

I feel like I'm just missing some super easy solution to this. Float doesn't work because that aligns the green box all the way to right and puts the empty space between the green and red. I tried a variety of 'position' css arrangements but had trouble with wanting the green box outside the red box.

EDIT(more details were requested):

I tried making the red box(#main) position relative, and the green(#sub) position absolute. I played around with various left:px, right:px coordinates but found that when I got it outside the red box it became invisible. I tried a variety of combinations of the position tags combined with align tags. I tried inline block(which I'm not even sure is relevant here!).

Then I was reading something about making a dummy wrapper parent div so I tried to do that and made a #wrapper which I tried to experiment with position relative/absolute but it ended up messing with the layout above the red block(really just a banner and an h1).

I'm sorry I don't have actual code to post but every time I tried something and it didn't work I just deleted the tags so I wouldn't confuse myself with all this extra CSS around. I've been working on this little thing for a few days now. Right now my code is already little bits left over from previous attempts:

#main   {width:400px;
 margin-left: auto;
 margin-right: auto;
 padding-bottom:0px;
 overflow:hidden;}

#sub    {right:-10px;
 bottom:100px;
 float:right;}
share|improve this question
3  
Post some of the code you have tried. – htmled Feb 13 at 2:25

2 Answers

up vote 0 down vote accepted

HTML

<div id="bigbox">
  <!-- content goes here -->
  <div id="littlebox">SomeImages</div>
</div>

CSS

#bigbox {
  width: 900px;
  margin: 0 auto;
  position: relative;
}

#littlebox {
  width: 150px;
  position: absolute;
  bottom: 5px;
  right: -160px; // width + a 10px margin if desired
}

http://jsfiddle.net/eLT9U/1/

share|improve this answer
This worked except now littlebox is invisible. Firebug does show the rectangle of it exactly where I want it... but you just can't see it's there. This is what I meant when I said once the coordinates move it out of bigbox you can't see it anymore. – Incarnadin Feb 13 at 2:48
Post an example please. – jimjimmy1995 Feb 13 at 2:49
Here you can see that I can select the area with firebug but the actually content is hidden because it's outside of bigbox. i50.tinypic.com/2i0rwcn.png – Incarnadin Feb 13 at 2:58
Can you link to the page? – jimjimmy1995 Feb 13 at 3:06
1  
Do you have overflow: hidden set on any of it's parent elements? That would cause it to be "invisible" outside of the larger box. – ferne97 Feb 13 at 3:07
show 2 more comments

http://jsfiddle.net/ferne97/MDWWu/

html

<div class="wrap">
    <div class="container"></div>
    <div class="box"></div>
</div>

css

.wrap {
    position: relative;
}

.container {
    width: 200px;
    min-height: 420px;
    margin: 0 auto;
}

.box {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: 120px; /* half .container width + extra margin */
}

For the margin-left, divide your content area in half then add whatever extra margin on top of that, so with that example it would be 200 / 2 = 100 + 20px margin = 120px

share|improve this answer
That works but I prefer my solution as there is no 'complicated' math and no need for an extra wrapper element. – jimjimmy1995 Feb 13 at 2:46
1  
true jimjimmy1995 example is a little more flexible because it doesn't rely on a fixed width. – ferne97 Feb 13 at 2:46
Totally didn't think of that. Can always use media queries to remove the small div if there isn't enough room on screen too. – jimjimmy1995 Feb 13 at 2:48

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.