CSS: Replace non-standard zoom property
See original GitHub issueGo to the showcase page in Firefox 71+: https://www.primefaces.org/showcase/ui/panel/accordionPanel.xhtml
In the console it reports:
This page uses the non standard property “zoom”. Consider using calc() in the relevant property values, or using “transform” along with “transform-origin: 0 0”.
They are correct if you look here its a non standard CSS which used to be used to fix IE8 issues. https://developer.mozilla.org/en-US/docs/Web/CSS/zoom
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.
It should be replaced with:
transform: scale(1); /* Standard Property */
transform-origin: 0 0; /* Standard Property */
Components affected:
- Accordion
- AutoComplete
- Dialog
- Forms
- Menu
- Paginator
- Tabview
- Tree
- Omega Theme (@mertsincan)
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
CSS non-standard "ZOOM" property - Stack Overflow
The non-standard zoom CSS property can be used to control the magnification level of an element. transform: scale() should be used instead ...
Read more >non-standard zoom CSS property - WordPress.org
The OceanWP-Theme uses the non-standard zoom CSS property in style.css. Firerfox ist warning and ... Will you replace zoom like that in the...
Read more >zoom - CSS: Cascading Style Sheets - MDN Web Docs
The non-standard zoom CSS property can be used to control the magnification level of an element. transform: scale() should be used instead ...
Read more >This page uses the non standard property “zoom” - Themeco
The non-standard zoom CSS property can be used to control the magnification level of an element. This feature is non-standard and is not...
Read more >CSS non-standard “ZOOM” property – iTecNote
CSS non-standard “ZOOM” property. css. I have a css file with a class with zoom: 1. ... between implementations and the behavior may...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Hi, The
transform: scale(1)
creates a different “stacking context” for the HTML element, which will break thez-index
comparison between elements inside the container element and those outside. The stacking contexts are explained here (MDN): https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_contextIn short, if you have a container element with a non-empty
transform
property, allz-index
attributes of elements inside this container element will have only an effect among each other, but won’t have any effect against all elements outside this container element.This is especially problematic, if you have backdrops from e.g. a modal dialog, which is placed as child-element of
<body>
, while the dialog itself (or any element which should be above the backdrop) is located inside the container lement (e.g. a TabView).@melloware please have a look at this again, as the change introduced in 8.0 breaks z-index-based layouting concepts, e.g. #5675 Although the
zoom: 1
wasn’t standard and did nothing in Firefox, at least it did not create a new stacking context and left the z-index usable.I’m not sure, why the
transform: scale(1)
is there in the first place. It doesn’t seem to fulfil any purpose. If it’s really only for some old IE8 problems and you need to support it (although not even microsoft supports it any more), can’t you just keep thezoom
if IE8 understands it? It won’t break code in newer browsers then … And if you don’t support IE8 any more, I believe you can just drop it altogether, can’t you?@cocorossello Feel free to investigate. Zoom is not supported on Firefox. So you may have to implement some custom styles for this to work without using zoom CSS.