
Developers and Designers how to remove the outline glow , border, in the textarea and the input fields. If you want to change the color of the border are you no need for the outline in the textarea and input field in your webpage how to do this. Follow the below step to remove the outline and glow color.

CSS FOR TEXTAREA
textarea { border: none; /*Remove the border*/ outline: none; /*Remove the Outline*/ -webkit-box-shadow: none; /*Remove the Box Shadow for chrome*/ -moz-box-shadow: none; /*Remove the Box Shadow for Mozilla Firefox*/ box-shadow: none; /*Remove the Box Shadow*/ }
CSS FOR INPUT
input { border: none; /*Remove the border*/ outline: none; /*Remove the Outline*/ -webkit-box-shadow: none; /*Remove the Box Shadow for chrome*/ -moz-box-shadow: none; /*Remove the Box Shadow for Mozilla Firefox*/ box-shadow: none; /*Remove the Box Shadow*/ }