I'm having trouble with Bootstrap 4 as I try to vertically align the elements of the right column and create a full-height column on the left with just a background color. I've come across many posts discussing similar issues, but none specific to this approach.
This is my HTML:
<div class="container-fluid">
<div class="row ">
<div class="col-md-6 ">
<div class="content colour-1">
<!-- Just aiming for a full height background color -->
</div>
</div>
<div class="col-md-6 ..->class?">
<form [formGroup]="loginForm" (ngSubmit)="onSubmit()" >
<!-- Just looking to vertically align this small form - center -->
</form>
</div>
</div>
</div>
How can I accomplish this? Is it achievable using only Bootstrap 4? Keep in mind that I'm using Angular, so these are my dependencies:
"dependencies": {
"@angular/animations": "~9.1.9",
"@angular/cdk": "^9.2.4",
"@angular/common": "~9.1.9",
"@angular/compiler": "~9.1.9",
"@angular/core": "~9.1.9",
"@angular/flex-layout": "^9.0.0-beta.31",
"@angular/forms": "~9.1.9",
"@angular/localize": "~9.1.9",
"@angular/material": "^9.2.4",
"@angular/platform-browser": "~9.1.9",
"@angular/platform-browser-dynamic": "~9.1.9",
"@angular/router": "~9.1.9",
"@ng-bootstrap/ng-bootstrap": "^6.1.0", -->NG-BOOTSTRAP
"bootstrap": "^4.4.0", --->BOOTSTRAP
"rxjs": "~6.5.4",
"tslib": "^1.10.0",
"zone.js": "~0.10.2"
},