防止滚动条出现

I am developing a website in asp.net; and on this page is the collapsable panel control installed from ajax. My question is, when i open the panel (in which there is a few labels) the scroll bar appears on the side of the page, and the page shifts. This looks unclean. I was wondering if there is a way to prevent the scrollbar from appearing.

Thanks in advance!

If you are talking about disabling the browser scroll bar you can add overflow-y: hidden to your html element in css.

Caution - this will disable scrolling on the website.

If you want to prevent from appearing and disappearing a scrollbar you can just enable it to be always there.

html {overflow-y:scroll}

It should help with the effect of moving site to the left or right depending on scrollbar appearance. Hope it helps.