Pop(over) the Balloons
I’ve always been fascinated with how much we can do with just HTML and CSS. The new interactive features of the Popover API are yet another example of just how far we can get with those two languages alone.…
I’ve always been fascinated with how much we can do with just HTML and CSS. The new interactive features of the Popover API are yet another example of just how far we can get with those two languages alone.…
The CSS :popover-open
pseudo-class is part of the Popover API that selects a popover
element and styles the popover when it is in its “open” state.
/* Select any open popover */
:popover-open {
/* Styles */
}
/* Select
… A popover is a transient view that shows up on top of a content on the screen when a user clicks on a control button or within a defined area. For example, clicking on an info icon on a specific …