Currently, I am utilizing the Bootstrap framework and implementing the grid system. Here is a snippet of the code I am working with:
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet"/>
<div class="row" style="background-color: aliceblue;">
<div class="col-lg">
First
</div>
</div>
<div class="row" style="background-color: red;">
<div class="col-lg">
Second
</div>
</div>
I am looking to adjust the first row to occupy 90% of the screen while the second row should take up only 10%. Can anyone provide guidance on how this can be achieved?
Your assistance is greatly appreciated.