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
549 Views Asked by Rahul Dole At
1
There are 1 best solutions below
Related Questions in WINDOWS
- how to play a sounds in c# forms?
- Echo behaviour of Microsoft Windows Telnet Client
- Getting error while running spark-shell on my system; pyspark is running fine
- DirectX 9 With No SDK Installed - How To Translate a D3DMATRIX?
- Gradle 8.7 cannot find installed JDK 22 in IntelliJ
- 'IOException: The cloud file provider is not running', when trying to delete 'cloud' folder
- Cannot load modules/mod_dav_svn.so into server
- Issue with launching application after updating ElectronJs to version 28.0.0 on Windows and Linux
- 32-bit applications do not display some files in Windows 10
- 'bun' is not recognized as an internal or external command
- mkssecreenshotmgr taking a screenshot
- Next js installation in windows 7 os
- Can't resize a partition using Mini Tool?
- Is there any way to set a printer as default according with Active Directory Policy Security Group and PC hostname?
- Electron Printing not working on Windows (Works on Mac)
Related Questions in FIREFOX
- (in promise) TypeError: NetworkError when attempting to fetch resource
- Optimizing Selenium script for faster execution
- Apply Firefox policies.json only to Firefox but not to Nightly
- Difficulty Accessing HTTP URLs/IP Addresses Due to Browser Redirecting to HTTPS: Seeking Solutions
- How do I separate emails (from 1 alias) in Thunderbird from invasive websites on Firefox with file browsing scripts? Should I worry?
- Gecko chrome @supports function for strings and numbers
- some CSS property working on chrome's console but not on firefox
- Playwright - Firefox tests time out, but Chromium tests don't
- Notification.permission always return 'denied' on firefox
- Useless horizontal scrollbar in Firefox with absolute positioned div with fixed height
- Why is it impossible to definitively know if your website is running as a PWA or as a website?
- WebRTC from Firefox to Android crashes
- Firefox CSS: Set a variable based on properties of another element
- Getting Negative Time Duration in Sender-to-Client Application using Date.now() api
- Prevent users accessing Firefox menu items
Related Questions in IFRAME
- Why a component? Drawer of mui Does not work inside Iframe
- How can I catch all DOMExceptions thrown in Firefox?
- Embeded Google slides opens new tab on screen touch (mobile mode)
- Jira helpdesk widget doesn't create an iframe when script is loaded dynamically
- HTTP Client Hint headers are not sent from an iframe
- Excel embedding through OneDrive: preview is correct, while the end result is not
- SameSite None Cookie on Authentication Cookie On WordPress Website
- Is it possible to interact with SSO between Website A and Website B?
- SSO to Grafana embeded in iframe
- AudioContext not heard although it is running
- How to disable page-break before a long iframe while printing?
- How to get a postMessage message from Duda into the embedded iframe?
- auto login with Grafana
- PagerDuty Integration
- iframe hosted on CloudRun not firing onLoad event in React JS
Related Questions in CSS-TRANSFORMS
- Is it possible when using the css transform property to delay only one value and not the other using transition-delay
- Unable to click and hover on buttons through Overlay
- rotateY() with perspective not rendering correctly on WebKit
- CSS3 animation is different in Chrome and Safari browser
- Elements on page flicker with webkit-transform after the background video plays
- Flickering text on css transform scale
- CSS rotating image gallery with react taking two button clicks when it should take one
- css skew element and keep max-width
- Website animated elements disappearing in mobile view
- How to keep the element's bounding box in place after being transformed?
- recreating interactive workspace in react. How to migrate?
- How To Give an MUI Modal Component an Exit Animation that's Different from the Opening Animation?
- Multiple overlapping svg paths create unwanted effect
- Resolving CSS transforms creating it's own container for full screen modal
- HTML Transformation Limitations: "iOS Alarm Clock"-like Animation
Related Questions in EMBEDDED-VIDEO
- mp4 embedded videos within github pages website not loading
- Hide share btn on Facebook embedded video?
- How come this Youtube embedded <iframe> video background doesn't play in Safari or Chrome Mobile?
- How to disable an actionbutton until embedded video is complete in Shiny
- Youtube embedded video looks weird on mobile
- How to play fullscreen by default in android for embedded Video player using react-native-webview?
- How to embed videos in Discord
- Youtube to HTML5 Loader forcing 720p with audio
- Is my Network Media List supposed to be empty, in Chrome dev tools?
- How to position youtube embedded video under another section since it has covered the entire page banner after making it responsive?
- Responsive video size (Vimeo)
- Embedded video keeps playing when going to next page
- Embedding a video with Gatsby <iframe>
- How Medium handle Paste link and embedded link
- How to create a embedded HTML video with a fallback video URL?
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 # Hahtags
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.