gpt4 book ai didi

html - 如何将文本区域设置为 100% 宽度和高度?

转载 作者:太空狗 更新时间:2023-10-29 16:38:41 25 4
gpt4 key购买 nike

如何设置 <textarea>占用浏览器窗口的 100% 宽度和高度?

例如,以下内容不起作用:

html, body, textarea {
margin: 0;
padding: 0;
border: 0;
width: 100%;
height: 100%;
}
<textarea>Text goes here</textarea>

jsFiddle

因为它占用了略高于 100% 的窗口,导致出现滚动条:

enter image description here

我如何制作 <textarea>占用 100% 的空间?

红利阅读

最佳答案

问题是 common white space issue inline-block/inline 元素由于垂直对齐。如果你检查谷歌的开发工具,你会看到这个:

enter image description here

因此,要修复它,您只需调整垂直对齐方式或使文本区域成为 block 元素(如其他答案中提供的那样):

html, body, textarea {
margin: 0;
padding: 0;
border: 0;
width: 100%;
height: 100%;
}
textarea {
vertical-align:top;
}
<textarea>Text goes here</textarea>

关于html - 如何将文本区域设置为 100% 宽度和高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50160860/

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