I am trying to add a message field to a website. The message field works fine in all browser except IE. There is a vertical scroll bar that keeps displaying next to it. Please help me out to remove it. Thanks

Here is the code,
<textarea name="message" cols="38" rows="12" id="message" style=" font-family: Verdana; color:#FFFFFF; font-size: 13px; background-color: #0E0E0F; border: 1px solid #740086; width:385px;" onFocus="if(this.value==this.defaultValue)this.value='';" onBlur="if(this.value=='')this.value=this.defaultValue;" margin-bottom:10px;="margin-bottom:10px;overflow: hidden;">Message</textarea>
Add
overflow:hiddento the CSS.You also had a syntax error in your HTML:
Here is the jsFiddle.