Here is CSS

#content {
    margin-left:190px;
    margin-right: 10px;
    overflow: auto;
}

Firefox & Opera result

enter image description here

Chrome Result

enter image description here

Tried to manually set #content's width param to 90%. It 'fixed' issue.

Can anyone explain why this problem occurs and how can I fix it?

Note: Css for left side bar is following

#left {
    float:left;
    width:180px;
}
link|improve this question

60% accept rate
3  
Create a minimal test case: strip things out until you've got as little as you can while still demonstrating the issue. – Chris Morgan Feb 19 at 6:23
feedback

2 Answers

We don't have any idea about the code structure you have, Please make a [fiddle] http://jsfiddle.net with minimum test case.

Check if your table inherit any float or width.

link|improve this answer
feedback

Hard to say without seeing code, but if those are tables you are using, one place you might possibly find answers (along with creating a minimal test case) would be looking into how different browsers handle tables/table css differently. Historically, styling tables has always been a little bit inconsistent between browsers.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.