Extra space under textarea, differs along browsers

自古美人都是妖i 提交于 2019-11-27 11:00:35

Add vertical-align: top to textarea.

The reason for the gap is that textarea is an inline (or inline-block) element, and the gap is the space reserved for descenders in text. I don't know exactly why the gap is different between different browsers.

In my case, thirtydot's answer didn't work well with the parent <div>'s bottom border.

display: block suited me nicely though.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!