Ok so I have a website and the entire thing is wrapped in a container. This container is centered with margin:auto. I would like to float a piece of content to the right of this centered container and have it sort of stick to the side of it no matter if the user resizes the browser window, etc. I'm wondering if there's a real simple way to do this rather than adding another huge div, giving it width and floating the centered portion to the left and the piece of content to the right. Thanks!
|
|
Maybe I'm misunderstanding your question, but isn't this what you want:
|
||
|
|
|
|
Piggybacking on @NickAllen, you want to use absolute positioning so that the width of the sidebar isn't included in the centering on the primary container.
|
||||||||
|
|
|
Give the container div the property position: relative; place your floating div as the first child of the container div and give it
I think that will work, but untested Okay so tested it and it works
|
|||
|
|
|
|
Floating is the way to go for this. They will always stick together, unless the container is smaller than the sum of their widths. Tip: make sure your container is wide enough to hold both inner divs; if not, and the user has a narrower window, they will show one below the other. |
||||
|
