gpt4 book ai didi

html - 文本区域无法解释的间距

转载 作者:搜寻专家 更新时间:2023-10-31 22:37:25 27 4
gpt4 key购买 nike

我刚刚注意到文本区域下方有一些连线间距,每个浏览器都不同。有人可以解释为什么它在那里吗?

span,
textarea {
border: 1px solid black;
margin: 0;
padding: 0;
}
<textarea></textarea>
<span>test</span>

here is an image of it

最佳答案

添加

vertical-align:bottom

这是因为

The baseline of some replaced elements, like <textarea>, is not specified by the HTML specification, meaning that their behavior with this keyword may change from one browser to the other.

MDN Reference

span,
textarea {
border: 1px solid black;
margin: 0;
padding: 0;
vertical-align: bottom;
}
<textarea></textarea>
<span>test</span>

关于html - 文本区域无法解释的间距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46447431/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com