Chrome 和 Opera 占位符

发布于 2024-12-03 01:34:36 字数 1080 浏览 3 评论 0原文

在 chrome 中,我有这个 CSS:

input::-webkit-input-placeholder{color:blue;}
input:-moz-placeholder{color:blue;}

我决定将其优化为:

input::-webkit-input-placeholder, input:-moz-placeholder{color:blue;}

并且占位符消失了!为什么会发生这种情况——某种错误还是什么?

另一个问题是 Opera: document.createElement('input') 中的'placeholder' 返回 true。所以这意味着它是可用的。但它没有显示。

输入的其余 CSS(如果需要):

input[type=text]{
    color: blue;
    height: 24px; width: 75px;
    padding-left: 24px;
    outline: none;
    background-color: #ABABAB;
    background-image: url('searchtool-1.png');
    background-repeat: no-repeat;
    -webkit-border-bottom-right-radius: 6px;
    -webkit-border-bottom-left-radius: 6px;
       -moz-border-radius-bottomright: 6px;
       -moz-border-radius-bottomleft: 6px;
            border-bottom-right-radius: 6px;
            border-bottom-left-radius: 6px;
}

编辑:demo

In chrome I had this CSS :

input::-webkit-input-placeholder{color:blue;}
input:-moz-placeholder{color:blue;}

Idecided to optimize it to:

input::-webkit-input-placeholder, input:-moz-placeholder{color:blue;}

And the placeholder disappered! Why is this happenning - some kind of bug or what?

And the other problem is Opera:
'placeholder' in document.createElement('input') returns true. So this means that it is available. But it is not showing.

The rest of the CSS for the input(if needed):

input[type=text]{
    color: blue;
    height: 24px; width: 75px;
    padding-left: 24px;
    outline: none;
    background-color: #ABABAB;
    background-image: url('searchtool-1.png');
    background-repeat: no-repeat;
    -webkit-border-bottom-right-radius: 6px;
    -webkit-border-bottom-left-radius: 6px;
       -moz-border-radius-bottomright: 6px;
       -moz-border-radius-bottomleft: 6px;
            border-bottom-right-radius: 6px;
            border-bottom-left-radius: 6px;
}

Edit: demo

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

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

发布评论

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

评论(1

风启觞 2024-12-10 01:34:36

虽然您可以混合未知的 CSS 属性,但不能混合不同的未知 CSS 选择器。如果浏览器看到未知的选择器,它将忽略该空洞块。

这是 CSS 规范规定的。

对于 IE10,您还应该使用::-ms-input-placeholder。

Opera 应该支持输入元素中的占位符。你可以拉小提琴吗?

While you can mix unknown CSS properties, you can not mix different unknown CSS selectors. If a browser sees an unknown selector, it will ignore the hole block.

This is by CSS specification.

You should also use: :-ms-input-placeholder for IE10.

Opera should support the placeholder in input elements. Ca you make a fiddle?

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