Removing a focus color for textarea - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:textarea

Description

Removing a focus color for textarea

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
textarea {<!--from  w  w w . j  a v a2 s  .c o m-->
   outline:none;
}
</style> 
 </head> 
 <body> 
  <textarea></textarea>  
 </body>
</html>

Related Tutorials