gpt4 book ai didi

html - 为什么高度为 0 的文本框仍然占用垂直空间

转载 作者:行者123 更新时间:2023-11-28 15:40:57 25 4
gpt4 key购买 nike

您好,我有一个文本框,我将高度设置为 0。

只是想知道为什么它甚至可见或占用任何空间。

input {
height: 0;
padding: 0;
margin: 0;
}
<input type="text" />

最佳答案

这是由于输入的 border 属性仍然存在。添加

input {
border: 0;
}

input {
height: 0;
padding: 0;
margin: 0;
border:0;
}
<input type="text" />

关于html - 为什么高度为 0 的文本框仍然占用垂直空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43462428/

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