CSS 文本域样式

设置文本域的样式

提示:使用 resize 属性可防止对 textareas 调整大小(禁用右下角的“抓取器”):

实例
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. textarea {
  6. width: 100%;
  7. height: 150px;
  8. padding: 12px 20px;
  9. box-sizing: border-box;
  10. border: 2px solid #ccc;
  11. border-radius: 4px;
  12. background-color: #f8f8f8;
  13. font-size: 16px;
  14. resize: none;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <p><b>提示:</b>使用 resize 属性可防止调整 textareas 的大小(禁用右下角的“抓取器”):</p>
  20. <form>
  21. <textarea>Some text...</textarea>
  22. </form>
  23. </body>
  24. </html>

分类导航