I\'ve got two div containers.
Whilst one needs to be a specific width, I need to adjust it, so that, the other div takes up the rest of the space. Is there any way I
You can use calc() Function of CSS.
Demo: http://jsfiddle.net/A8zLY/543/
.left { height:200px; width:calc(100% - 200px); background:blue; float:left; } .right { width:200px; height:200px; background:red; float:right; }
Hope this will help you!!