Is there a way to continue text in the second column after filling up the first column vertically? I experimented with white space but it didn't work. Any suggestions?
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="e5878a8a919691978495a5d1cbd3cbd4">[email protected]</a>/dist/css/bootstrap.min.css">
</head>
<body>
<div class="container-fluid">
<div class="row w-50">
<div class="col bg-light ml-5">
<div>
<p>a</p>
<p>b</p>
<p>c</p>
<p>d</p>
<p>e</p>
<p>f</p>
<p>g</p>
</div>
</div>
<div class="col bg-secondary"></div>
</div>
</div>
</body>
</html>
.col{
height: 200px;
}
This is what the current output looks like https://i.sstatic.net/zsjPV.png
This is how we want the output to look like https://i.sstatic.net/ccUZS.png