gpt4 book ai didi

html - 输入文本框宽度与父级相同

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

如何让文本框继承其容器的宽度?

例如我有一个 div,里面有一个文本框。

<div id='content' style='width:100%;'>
<input type='text' name='txtUsername'>
</div>

我想做的是,当我调整浏览器大小时,文本框必须跟随其父 div 的宽度。

使用上面的代码,每当我将浏览器的宽度调整到更小的宽度时,文本框总是溢出它的容器。

最佳答案

您应该将 box-sizing:border-boxwidth:100% 一起使用。这样 input 将适合 100% 的容器宽度,但不会因为添加了 input 的填充而溢出:

#content input
{
width:100%;
box-sizing:border-box;
-moz-box-sizing:border-box;
}

现场演示: http://jsfiddle.net/745Mt/1/

有关 box-sizing CSS 属性的更多信息及示例:http://css-tricks.com/box-sizing/

关于html - 输入文本框宽度与父级相同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20092074/

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