Make TextArea non-editable - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:textarea

Description

Make TextArea non-editable

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
 </head> <!--from  ww w.  jav a 2 s. c  o  m-->
 <body> 
  <textarea readonly rows="5" columns="100">This is a readonly text</textarea>  
 </body>
</html>

Related Tutorials