Currently CSS control over the x / y scrollbars in div elements is not standard, it can only be set in Internet Explorer. If you must remove either scroll bar, you can do it with the following code (note it seems safe in browsers that don't support it as well). <script type="text/javascript"> function customStyle(){ document.getElementById("TextBox1_D").style.overflowX = "hidden"; } </script> ....... <body onload="customStyle()"> Where TextBox1 is the ClientID of the text box being spell checked, and overflowX specifies horizontal, and overflowY would specify vertical. |