CSS属性框反射兼容性?
Mozilla 和其他浏览器是否有与 -webkit-box-reflect
类似的属性?我在谷歌上找不到哪些其他浏览器支持此功能。因此,如果有人可以告诉我或给我链接,那就太好了。
Is there similar property to -webkit-box-reflect
for the mozilla and other browsers? I could not find on google which other browsers have support for this. So if someone can tell me or give me link, that would be really nice.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这不仅可以在 webkit(最新的 chrome 或 safari)中实现,而且在最新的 firefox 中也可以实现。
这是示例:http://codepen.io/jonathan/pen/pgioE
HTML:
CSS (webkit):
CSS (Firefox - Gecko):
Firefox 使用
-moz-element
进行反射 (https://developer.mozilla.org/en-US/docs/CSS/element),而 webkit 使用专有的供应商前缀进行反射。我希望这有帮助!
This is possible with not only webkit (latest chrome or safari) but also in latest firefox.
Here is the example: http://codepen.io/jonathan/pen/pgioE
HTML:
CSS (webkit):
CSS (Firefox - Gecko):
Firefox uses
-moz-element
to do the reflections (https://developer.mozilla.org/en-US/docs/CSS/element), whereas webkit uses a proprietary vendor prefix for reflections.I hope this helps!
-webkit-box-reflect
属性仅受 webkit 浏览器支持,即 Chrome 和 Safari。由于它是专有的 webkit 属性,因此其他浏览器没有等效的属性。另一种方法是使用 javascript 创建一个具有褪色不透明度的镜像元素。
The
-webkit-box-reflect
property is only supported by webkit browsers, namely Chrome and Safari. As it is a proprietary webkit property, there is no equivalent for other browsers.The alternative would be to use javascript to create a mirror element with faded opacity.