I have 2 divs: one in the left side and one in the right side of my page. The one in the left side has fixed width and I want the one of the right side to f
These days, you should use the flexbox method (may be adapted to all browsers with a browser prefix).
flexbox
.container { display: flex; } .left { width: 180px; } .right { flex-grow: 1; }
More info: https://css-tricks.com/snippets/css/a-guide-to-flexbox/