表单字段在 Mac 上的呈现方式不同

发布于 2024-11-16 12:22:45 字数 269 浏览 2 评论 0原文

文本字段在 Mac 上显示插入阴影,但在 PC 上不显示

我正在尝试标准化文本字段和文本区域的外观。下面是我的表单字段在 Mac 上显示的图像,但文本区域显示时没有插入阴影。在 Windows 上,文本字段和文本区域显示相同。

我尝试过各种 CSS 组合来标准化它们,但没有成功。我对插入版本或非插入版本都满意。

如果这对任何人有帮助,该表单是 WordPress 重力表单。

text fields show inset shadow on Mac, but not on PC

I'm trying to standardize the appearance of my text fields and textarea. Below is an image of how my form fields display on Mac, but the textarea displays without the inset shadow. On Windows, the text fields and textarea display the same.

I've tried various CSS combinations to standardize them, with no luck. I'm fine with either the inset version or the non-inset version.

In case this helps anyone, the form is a WordPress Gravity Form.

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

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

发布评论

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

评论(2

紧拥背影 2024-11-23 12:22:45

通常这可以通过为输入框设置背景图像来解决。如果您想保持简单一点,请找出不一致的地方,并在 CSS 中明确设置它们。

input.inputbox { 
    background: url(input.gif) 0 0 no-repeat; 
    width: 150px; 
    height: 30px; 
    ... /* fonts, padding, borders, etc */
}

Typically this can be solved by setting a background image for the input boxes. If you're trying to stay a little more simplistic, figure out where things are inconsistent, and explicitly set them in your CSS.

input.inputbox { 
    background: url(input.gif) 0 0 no-repeat; 
    width: 150px; 
    height: 30px; 
    ... /* fonts, padding, borders, etc */
}
時窥 2024-11-23 12:22:45

实现这一点的唯一方法是使用 javascript。我会推荐你
[正式化我][1]
[1]: http://formalize.me/ jQuery 插件

the only way to achieve this is using javascript. I would recommend you
[Formalize me][1]
[1]: http://formalize.me/ jQuery plugin

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