CSS min() Function
Preview
Code
<style>
.box{
width:min(300px, 80%);
background:#f59e0b;
height:60px;
}
</style>
<div class="box"></div>
<style>
.box{
width:min(300px, 80%);
background:#f59e0b;
height:60px;
}
</style>
<div class="box"></div>