消除浏览器中 Textarea 下方的额外空间
使用 textarea HTML 元素时,其下方可能会出现不需要的额外空间,大小各异跨浏览器从 1 到 4 像素。尽管使用了简单的标记,这个问题仍然存在。
`
<style> body { margin: 0; padding: 0; } .main { background-color: red; } textarea { background-color: gray; resize: none; margin: 0; border: 0 none; padding: 10px; height: 50px; overflow: hidden; } </style>
<div class="main"> <textarea></textarea> </div>