I'm attempting to create a two-column full-height layout using bootstrap 4. My goal is to achieve the following structure:
+-------------------------------------------------+
| Logo Header Another Logo| - height 10 %
+----------------------------------+--------------+ -
| | Content 2 | - height 10 % |
| |--------------| |
| | | |
| | width | |
| Content 1 - width 70% | 30% | - height 60% | - total height 90%
| | Content 3 | |
| | | |
| +--------------+ |
| | Content 4 | - height 20% |
+----------------------------------+--------------+ -
All elements should fit without requiring scrolling on the screen. I aim to adjust the widths and heights dynamically based on screen resolution. This means that I want to avoid any need for scrolling.
Please note that this design is specifically for desktop view, where the width is greater than 768 px. Therefore, mobile view considerations are not necessary.