The :popover-open
CSS pseudo-class represents a popover element (i.e. one with a popover
attribute) that is in the showing state. You can use this to apply style to popover elements only when they are shown.
:popover-open
Syntax
:popover-open { /* ... */ }
Examples
By default, popovers appear in the middle of the viewport. The default styling is achieved like this in the UA stylesheet:
[popover] { position: fixed; inset: 0; width: fit-content; height: fit-content; margin: auto; border: solid; padding: 0.25em; overflow: auto; color: CanvasText; background-color: Canvas; }
To override the default styles and get the popover to appear somewhere else on your viewport, you could need to override the above styles with something like this:
:popover-open { width: 200px; height: 100px; position: absolute; inset: unset; bottom: 5px; right: 5px; margin: 0; }
Specifications
Specification |
---|
HTML Standard # selector-popover-open |
Browser compatibility
Desktop | Mobile | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | |
:popover-open |
114 | 114 | 125 | 100 | 17 | 114 | 125 | 76 | 17 | 23.0 | 114 |
See also
- Popover API
-
popover
HTML global attribute
© 2005–2024 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/:popover-open