Guest User

Untitled

a guest
May 24th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. document.getElementById('textboxid').style.height="200px";
  2. document.getElementById('textboxid').style.fontSize="14pt";
  3.  
  4. //in your CSS file or <style> tag
  5. #textboxid
  6. {
  7. height:200px;
  8. font-size:14pt;
  9. }
  10.  
  11. <!--in your HTML-->
  12. <input id="textboxid" ...>
  13.  
  14. <input style="height:200px;font-size:14pt;" .....>
  15.  
  16. <html>
  17. <head>
  18. <style>
  19. .Large
  20. {
  21. font-size: 16pt;
  22. height: 50px;
  23. }
  24. </style>
  25. <body>
  26. <input type="text" class="Large">
  27. </body>
  28. </html>
  29.  
  30. <input type="text" style="font-size:16pt;">
  31.  
  32. <input type="text" style="font-size:xxpt;height:xxpx">
Add Comment
Please, Sign In to add comment