Penguin129
New Member
- Messages
- 68
- Reaction score
- 0
- Points
- 0
Ok so I have one div as a container with 2 divs inside.
----------------
|.....|...........|
|left|..right..|
|.....|...........|
----------------
Here's the css I need help with.
How would I go about making the div on the right scale with the rest of it? Also, I know it can be done with a table but I would like to avoid tables for this.
----------------
|.....|...........|
|left|..right..|
|.....|...........|
----------------
Here's the css I need help with.
Code:
div.container {
min-width: 780px;
}
div.left {
float: left;
width: 90px;
}
div.right {
float: right;
}
Last edited: