Liquid layout: avoid change in body width due to vertical scrollbar
One way to work around this is to make sure scroll bars are always present. You can then style your pages with confidence that they're not going to shift left and right.
html,body
{
height:101%;
}
You can also do:
html {
overflow-y: scroll;
}
(I don't think the overflow method works with Opera though)