textarea高度自适应
Posted dch0
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了textarea高度自适应相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <style> .textarea{ width: 400px; min-height: 20px; max-height: 300px; _height: 120px; margin-left: auto; margin-right: auto; padding: 3px; outline: 0; border: 1px solid #a0b3d6; font-size: 12px; line-height: 24px; padding: 2px; word-wrap: break-word; overflow-x: hidden; overflow-y: auto; border-color: rgba(82, 168, 236, 0.8); box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6); } </style> <body> <div class="textarea" contenteditable="true"><br /></div> </body> </html>
以上是关于textarea高度自适应的主要内容,如果未能解决你的问题,请参考以下文章