twitter-bootstrap – 在FireFox中看不到Bootstrap Modal中的embed标签

前端之家收集整理的这篇文章主要介绍了twitter-bootstrap – 在FireFox中看不到Bootstrap Modal中的embed标签前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个< embed>标签内部Bootstrap Modal播放视频(使用vlc(2.1.3)插件和闪存进行测试).它在Chrome,Safari和Opera中运行良好,但在Firefox中,视频无法显示,但它在后台运行,我可以听到音频,但无法看到视频.我将z-index设置为更高的值但没有用.谷歌搜索了很多,但无法找到答案,任何帮助将不胜感激.

类似的问题在这里:Issue using Flash within bootstrap 3 modal

解决方法

您可以通过向样式表添加以下样式来覆盖Firefox的转换样式:
.modal.in .modal-dialog { -moz-transform: none; }
.modal.fade .modal-dialog { -moz-transform: none; }

这甚至可以保留模态对话框的淡入效果

原文链接:/bootstrap/233835.html

猜你在找的Bootstrap相关文章