Mac OS X 上的网页控件

发布于 2024-10-20 05:17:37 字数 363 浏览 2 评论 0原文

看起来像

例如,我希望普通文本和控件的字体大小和字体系列相同。怎么做呢?

如果您有解决方案,请尝试基于以下示例: http://jsfiddle.net/uff8q/2 /

UPD 我说的是 Mac OS X(我尝试过 Chrome 和 Safari)

It looks like controls like <input> <select> and <button> cant' be affected by CSS properties such as font-size (and some others). However, the font-size is actually could be different I saw, but how to control it?

For instance I want to have the font-size and font-family to be the same for normal text and for controls. How to do that?

If you have a solution, try to base it on this example: http://jsfiddle.net/uff8q/2/

UPD I'm talking about Mac OS X (I tried Chrome and Safari)

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

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

发布评论

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

评论(1

晒暮凉 2024-10-27 05:17:37

这取决于浏览器。

  • 项目可以在任何浏览器中设置完整样式。您可以更改字体、大小和颜色。

更新:以下是您可以使用 WebKit 获得的三种尺寸:

<select style="font-size: 10px;">
<option>Foobar</option>
</select>

<select style="font-size: 11px;">
<option>Foobar</option>
</select>

<select style="font-size: 16px;">
<option>Foobar</option>
</select>

和一张图片:

在此处输入图像描述

This depends on the browser.

  • <input> items can be full styled in any browser. You can change the font, size and colours.
  • <select> items can be fully styled in Firefox, but not Safari/Chrome. You cannot change the font very much — there are only three sizes.

Update: here are the three sizes you can get with WebKit:

<select style="font-size: 10px;">
<option>Foobar</option>
</select>

<select style="font-size: 11px;">
<option>Foobar</option>
</select>

<select style="font-size: 16px;">
<option>Foobar</option>
</select>

And a picture:

enter image description here

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