OR Condition Example

Use or to check multiple possible features.

Preview

Code

<style>
.box{
padding:20px;
background:#e5e7eb;
}

@supports (display:grid) or (display:flex){
.box{
background:#22c55e;
color:white;
}
}
</style>

<div class="box">OR condition</div>

More CSS @supports Examples (8)