Forum Moderators: not2easy
For example, if I had three <div>'s splitting the page vertically, and the first <div>'s width was set to 300px, the second to 200px-- the third I would want to be set to a % width so that it expands and contracts according to browser resolution.
* just don't declare a width for the third <div>?
I may be making this much more difficult than it is.
I assume the divs are floated? How about just floating it left, so it will butt up next to the other two... It will expand to fill the space automatically. :)
If the divs are not floated (but absolutely positioned) you can just give it a left margin of 500px (still no set width) and it will work fine :)