Hello.
There was such a problem: the site has two columns. One - sitebar - fix. size (254px), and the second - dynamic size (max-width: 1100px min-width: 668px). Help to implement (in general).
What I did myself:
#sitebar { position: relative; width: 254px; float: left; } #content-right-part { float: right; max-width: 1100px; width: 100%; min-width: 668px; } In this situation, the right column slightly decreases, and then jumps to the next line. Trying to solve this problem, did the following:
content { display: block; width: 1400px; /*max size*/ white-space: nowrap; } content section { display: inline-block; } However, the problem is that adaptability is missing. That is, it just appears scrolling. Help me please.