如何最小化> (宽度和高度)?
我尝试过:
font-size:40%;
但发现它不起作用
I tried:
font-size:40%;
But found it not working
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我尝试过:
font-size:40%;
但发现它不起作用
I tried:
font-size:40%;
But found it not working
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您必须提供输入标记的宽度和高度属性值
,或者您可以使用此字体大小的类,
仅减少文本框内字体的大小,而不减少其尺寸。
You have to provide the width and height attribute values of the input tag
or you can use a class for this
font-size only reduces the size of the font inside the text box and not the dimension of it.
您可以使用 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.
不幸的是,文本框的高度是用户代理特定的东西,我相信 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.