HTML 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>
OUTPUT
×

Save as Private