The question says it all but to give some details, I have an html page with an embedded video in it and this page is inside an iframe. Iframe is also within a parent div which has been given this css property: transform: scale(0.8). In this case the video doesn't appear when you run it in Firefox on a Windows machine.
I have searched everywhere on the internet and a lot of people had the same issue. I absolutely require scaling. I have even tried using transform: none on the embedded video to cancel out the scaling effect applied by its parent, but of no use.
I know this is a browser issue after all, but is there any workaround possible?
Windows firefox issue with embedded videos and css transform scale property
547 Views Asked by Rahul Dole At
1
There are 1 best solutions below
Related Questions in WINDOWS
- Get Maximum Log Size
- Debugging Windows Services while starting
- Possible consequences of duplicate ProgId for different classes
- How to chain BCryptEncrypt and BCryptDecrypt calls using AES in GCM mode?
- mingw-64 conflicting declarations when cross-compiling
- I run an EXE program from a Windows Service but I can't see form C#?
- Why is PowerShell "not recognized" when installing Chocolatey?
- How to check if Windows device is phone or tablet/pc?
- How to add directories to Cygwin gcc default search path
- Can't install anything with pip2 on Windows 7 due to UnicodeDecodeError
- Active directory and linux nslcd binding without extending the AD schema
- How To Prevent Over Scrolling in Scroll Viewer Windows Phone 8.1
- Unicode error from pip install
- Where is the 'EnablePinning' property in the ribbon framework's recent items?
- How can I implement the same models and data across ASP.NET and Windows Apps
Related Questions in FIREFOX
- Firefox 37 throwing error when trying to add microphone volume control for WebRTC audio context
- Polymer 1.0 on Firefox, Safari /deep/ selector not working
- Firefox Windows / Linux inconstancies
- Firefox SDK Add-on - How to start
- PlayN and Firefox issues
- Copy to clipboard from Firefox add-on content script
- SVG data image not working as a background-image in a pseudo element
- Selenium Firefox webdriver does not adopt profile
- how can i use require(""); in javascript
- Skewed border won't display properly in FiFO on MacOs
- Optimize website to show reader view in Firefox
- Remove the black line from the bottom and right side of Firefox select boxes
- Onclick doesn't work in Firefox, but in Chrome - yes
- How do you close the DOM Properties window in Firefox Developer Edition?
- Cannot click on Angular-JS button with selenium web-driver: ElementNotVisibleException
Related Questions in IFRAME
- ios responsive design not working (too wide in portrait orientation)
- Detect IFRAME blocking?
- iframe just before unload event
- Check URL is available Using PHP. if URL is available load the iframe
- Sending url to iframe in different page
- Iframe not passing url parameters
- how to insert and iframe from php
- Serving external webpages through a single website
- jQuery mobile - generating html dynamically not working with iframe
- AngularJs iframe source update not invoking javascript methods
- Webmail confirmation without new page
- Title attribute tooltips and iframes
- Asp.Net Mvc 4 - Login does not work in Safari Mobile
- Display IFrame from same domain under SSL
- responsive iframe center for ipad
Related Questions in CSS-TRANSFORMS
- Bootstrap flip card with css3 transform
- Perfecting perspective - css folding effect
- The CSS transforms that I used don't work in mozilla Firefox
- "Card" rotation and selectable text
- Wrap icons around an extendable circle
- GSAP Animation Failing to Interpolate CSS3 Transforms
- Starting a css site but format issues
- In leaflet, how to set a marker to a fixed position on map?
- IE9: rotated background images become skewed
- Nested backface-visibility is not hidden
- Why won't Facebook "Like" Button Scale on iOS Safari?
- Bug in Chromium with rendering css transformation transition
- Backface Visibility not working on children
- Can I "transform" a sibling with CSS on hover?
- How to create a sphere in css?
Related Questions in EMBEDDED-VIDEO
- cross browser embedded video grayscale filter
- Blogger post with embedded YouTube video, linked and playable on facebook
- Setting volume on embedded vimeo video with javascript api
- Youtube embeded code
- Detect if USTREAM is broadcasting (on-air)
- youtube as3 api closed captioning error
- Show Youtube video source into HTML5 video tag?
- how to embed an youtube video on my html page?
- Vimeo embed issue on iPhone
- How to replace an image called by a menu button with an embedded video
- Windows firefox issue with embedded videos and css transform scale property
- .MOV not playing in Embedded Win Media Player
- Embedding a live RTSP stream of H.264 video in a webpage
- How to stop autoplay of video using iframe tag on Safari browser
- How Medium handle Paste link and embedded link
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Ok, I finally found out. I think only flash videos will work in this case. I was using different values for the type attribute in the object and embed tags
I just had to add
wmode="transparent"and change the value of the type attribute to flash, like so:Notice the wmode and type attributes above. But I think you will need Quicktime plugin to run this.