OR Condition Example
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>
<style>
.box{
padding:20px;
background:#e5e7eb;
}
@supports (display:grid) or (display:flex){
.box{
background:#22c55e;
color:white;
}
}
</style>
<div class="box">OR condition</div>