My width is calculated
.wrapper { width: 400px; } .box { width: calc(20% + 100px); }
<div class="wrapper"> <div class="box">My width is calculated.</div> </div>