I want to put two divs next to each other. The right div is about 200px; en the div left must fill up the rest of the screen width? How can i do this?
I don't want to use percents because then my layout is crap :)
Thnx
|
I want to put two divs next to each other. The right div is about 200px; en the div left must fill up the rest of the screen width? How can i do this? I don't want to use percents because then my layout is crap :) Thnx |
||||
|
|
|
Unfortunately, this is not a trivial thing to solve for the general case. The easiest thing would be to add a css-style property "float: right;" to your 200px div, however, this would also cause your "main"-div to actually be full width and any text in there would float around the edge of the 200px-div, which often looks weird, depending on the content (pretty much in all cases except if it's a floating image). EDIT: As suggested by Dom, the wrapping problem could of course be solved with a margin. Silly me. |
|||||||||
|
|
You can use CSS float and a margin properties to solve it. Div 1 -- on the right side
Div 2 -- on the left of Div 2, covering the entire available area
|
|||||||||||||||
|
|
I don't know if this is still a current issue or not but I just encountered the same problem and used the CSS
Note that the use of the inline style attribute was only used for the succinctness of this example of course these used be moved to an external CSS file. |
|||||||||||||
|
|
The method suggested by @roe and @MohitNanda work, but if the right div is set as
Demonstrated: left rightEdit: Hmm, interesting. The preview window shows the correctly formatted divs, but the rendered post item does not. Sorry then, you'll have to try it for yourself. |
|||
|
|
|
To paraphrase one of my websites that does something similar:
|
|||||||||||
|
|
As everyone has pointed out, you'll do this by setting a However.. if you don't use a However.. the LHS float will shrink-wrap the content, so you'll need to insert a defined width childnode if that's not acceptable, at which point you may as well have defined the width on the parent. However.. as David points out you can change the read-order of the markup to avoid the LHS float requirement, but that's has readability and possibly accessibility issues. However.. this problem can be solved with floats given some additional markup (caveat: I don't approve of the .clearing div at that example, see here for details) All things considered, I think most of us wish there was a non-greedy width:remaining in CSS3... |
|||
|
|
|
I ran into the same problem and Mohits version works. If you want to keep your left-right order in the html, just try this. In my case, the left div is adjusting the size, the right div stays at width 260px. HTML
CSS
The trick is to use a right padding on the main box but use that space again by placing the right box again with margin-right. |
|||
|
|
|
I ran into this problem today. Based on the solutions above, this worked for me:
Simply make the parent div span the full width and float the divs contained within. |
|||
|
|
This will work OK as long as you set |
||||
|
|
This won't be the answer for everyone, since it is not supported in IE7-, but you could use it and then use an alternate answer for IE7-. It is display: table, display: table-row and display: table-cell. Note that this is not using tables for layout, but styling divs so that things line up nicely with out all the hassle from above. Mine is an html5 app, so it works great. This article shows an example: http://www.sitepoint.com/table-based-layout-is-the-next-big-thing/ Here is what your stylesheet will look like:
Pretty simple, huh? |
|||
|
|
|
just use a z-index and everything will sit nice. make sure to have positions marked as fixed or absolute. then nothing will move around like with a float tag. |
|||
|
|