CSS Percentage Unit
Preview
Code
<style>
.container{
width:300px;
background:#e5e7eb;
}
.box{
width:50%;
height:50px;
background:#22c55e;
}
</style>
<div class="container">
<div class="box"></div>
</div>
<style>
.container{
width:300px;
background:#e5e7eb;
}
.box{
width:50%;
height:50px;
background:#22c55e;
}
</style>
<div class="container">
<div class="box"></div>
</div>