gpt4 book ai didi

php - 如何设置窗体框的大小?

转载 作者:行者123 更新时间:2023-11-28 05:08:02 32 4
gpt4 key购买 nike

我正在使用这种形式,它在 Dreamweaver 中的显示效果与它应有的一样,但是当我在网站上使用它时,它又变大了。该站点是通过包含为动态内容 (php) 加载的。

<form action="index.php" method="get">
<input type="hidden" name="content" value="home" />
<label>Go to
<input style height="20" width="40" type="numeric" name="page" />
</label>
<input type="submit" value="Go" />
</form>

感谢您的帮助!

最佳答案

在需要的地方添加 style="width:Npx; height:Mpx;" 以支持已弃用的 widthheight HTML 属性。

例子:

<form action="index.php" method="get">
<input type="hidden" name="content" value="home" />
<label>Go to
<input style="height:20px; width:40px" type="numeric" name="page" />
</label>
<input type="submit" value="Go" />
</form>

关于php - 如何设置窗体框的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4391344/

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