how can I make a column take up 100% height of the browser w bootstrap 4?
See the following: https://codepen.io/johnpickly/pen/dRqxjV
Note the yellow div, I
Although it is not a good solution but may solve your problem. You need to use position absolute in #yellow element!
#yellow
#yellow {height: 100%; background: yellow; position: absolute; top: 0px; left: 0px;} .container-fluid {position: static !important;}
XXXX Form Goes Here