CSS isolation Property

You are Here:

CSS isolation Property

CSS isolation property determines whether an element must create a new stacking context.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #outerdiv{ background: #0080ff; height: 170px; } img{ width: 282px; height: 169px; mix-blend-mode: overlay; } #innerdiv{ isolation: isolate; } </style> </head> <body> <h1>CSS isolation Property</h1> <div id="outerDiv"> <div id="innerDiv"> <img src="car-left.png"> </div> </div> </body> </html>

Syntax

Using CSS

element{ isolation: isolate; }

Using Javascript

object.style.isolation="isolate";

Animatable

No, isolation property is not animatable. CSS Animatable Properties Reference.

Default Value

Default value for CSS isolation property is auto.

Property Value

The following table provides a list of values for CSS isolation property.

ValueExplanation
autoA new stacking context is created only if one of the properties applied to the element requires it.
isolateA new stacking context must be created.

Using JavaScript

In the following example, we will demonstrate how to change the CSS isolation property of an element using JavaScript.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #outerdiv{ background: #0080ff; height: 170px; margin-bottom: 20px; } img{ width: 282px; height: 169px; mix-blend-mode: overlay; } </style> </head> <body> <h1>CSS isolation Property</h1> <div id="outerDiv"> <div id="innerDiv"> <img src="car-left.png"> </div> </div> <button onclick="myFunction()">Click Me</button> <script> var x = document.getElementById("innerDiv"); function myFunction(){ x.style.isolation = "isolate"; } </script> </body> </html>

Reminder

Hi Developers, we almost covered 98.7% of CSS Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in CSS.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author