ipad / safari 上的盒子阴影

发布于 2024-09-26 13:14:40 字数 591 浏览 3 评论 0原文

我在为 Safari 的 ipad 上的输入框添加漂亮的焦点阴影时遇到问题。

代码

/* remember to define focus styles! */
:focus {
    outline: 0;
}    
input[type=text]{
        width: 494px;

        height: 44px;
        line-height: 44px;
        font-size: 24px;
        border: 2px solid #666666;
    }
    input:focus{
      -webkit-box-shadow:0 0 15px #ffffff;
       -moz-box-shadow: 0 0 15px #ffffff;
       box-shadow:0 0 15px #ffffff;
    }

这是我使用埃里克·迈耶重置的 。 我希望它看起来像这样: alt text

有什么想法吗?

谢谢你们。

贾森

I'm having trouble adding the nice shadow on focus for an input box on my ipad for safari.

Here's my code

/* remember to define focus styles! */
:focus {
    outline: 0;
}    
input[type=text]{
        width: 494px;

        height: 44px;
        line-height: 44px;
        font-size: 24px;
        border: 2px solid #666666;
    }
    input:focus{
      -webkit-box-shadow:0 0 15px #ffffff;
       -moz-box-shadow: 0 0 15px #ffffff;
       box-shadow:0 0 15px #ffffff;
    }

I'm using eric meyer's reset.
I want it to look like this:
alt text

Any ideas?

Thanks guys.

Jason

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

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

发布评论

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

评论(3

绿萝 2024-10-03 13:14:40

我有同样的问题,但我找到了解决方案:

-webkit-appearance: none;

但是,当存在插入阴影时它不起作用。

I have the same problem but I found the solution:

-webkit-appearance: none;

However it does not work when there is an inset shadow.

汐鸠 2024-10-03 13:14:40
<input type="text" name="success" value="fail">

没有骰子的人,ipad 还没有支持这个,这太没用了,chrome 就是它!

更新:

-webkit-appearance:none; FTW

<input type="text" name="success" value="fail">

No dice people, ipad hasn't got support for this which is so useless, chrome is it!

Update:

-webkit-appearance: none; FTW

万劫不复 2024-10-03 13:14:40

就我而言,设置 border-radius 解决了我的问题。

border-radius: 1px;

In my case, setting border-radius solved my problem.

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