如何最小化> (宽度和高度)?

发布于 2024-08-03 23:17:02 字数 70 浏览 2 评论 0原文

我尝试过:

font-size:40%;

但发现它不起作用

I tried:

font-size:40%;

But found it not working

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

你げ笑在眉眼 2024-08-10 23:17:03

您必须提供输入标记的宽度和高度属性值

<input type="text" style="width: 50px; height: 10px" />

,或者您可以使用此字体大小的类,

<style>
.SmallInput { width: 50px; height: 10px; }
</style>

<input type="text" class="SmallInput" />

仅减少文本框内字体的大小,而不减少其尺寸。

You have to provide the width and height attribute values of the input tag

<input type="text" style="width: 50px; height: 10px" />

or you can use a class for this

<style>
.SmallInput { width: 50px; height: 10px; }
</style>

<input type="text" class="SmallInput" />

font-size only reduces the size of the font inside the text box and not the dimension of it.

因为看清所以看轻 2024-08-10 23:17:03

您可以使用 em 作为尺寸。 Em 是字体的大小。 .5 em 是字体大小的 1/2。

You could use em as a size. Em is the size of the font. .5 em is 1/2 the size of the font.

城歌 2024-08-10 23:17:03

不幸的是,文本框的高度是用户代理特定的东西,我相信 FF、Opera 和 IE 会将其视为框对象,而 Safari(可能还有 Mac 上的 FF?)使用 OSX 控件且不可调整。当然,IE6盒子模型已经被破坏了。

Unfortunately the height of the text box is User-agent specific thing, I believe that FF, Opera, and IE will treat it like a box object while Safari (and possibly FF on Mac?) use the OSX controls and are not adjustable. IE6 box model is broken of course.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文