Style isolation attribute
- Προηγούμενη σελίδα height
- Προηγούμενη σελίδα justifyContent
- Επιστροφή στο επίπεδο πάνω Όντα Style HTML DOM
Definition and usage
isolation
Attribute defines whether a new stacking content must be created.
See also:
CSS Reference Manual:isolation attribute
Example
Create a new stacking context for the element with id="d":
document.getElementById("d").style.isolation = "isolate";
Syntax
Return isolation attribute:
object.style.isolation
Set isolation attribute:
object.style.isolation = "auto|isolate|initial|inherit"
Attribute value
Value | Description |
---|---|
auto | Default. A new stacking context is created only when one of the properties applied to the element requires it. |
isolate | A new stacking context must be created. |
initial | Set this attribute to its default value. See initial. |
inherit | Inherit this attribute from its parent element. See inherit. |
Technical details
Default value: | auto |
---|---|
CSS version: | CSS3 |
Browser support
The numbers in the table indicate the version of the browser that fully supports this attribute.
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
41.0 | 79.0 | 36.0 | Υποστήριξη | 30.0 |
- Προηγούμενη σελίδα height
- Προηγούμενη σελίδα justifyContent
- Επιστροφή στο επίπεδο πάνω Όντα Style HTML DOM