Allow me to clarify by sketching a few additional rectangles to illustrate the issue.
https://i.sstatic.net/JtuqK.png
The top-left and top-right sections combined are equal in width to the bottom-left and bottom-right bars, however, they do not maintain the same proportions.
Now, I could delve into how to resolve this dilemma, but it has come to my attention that errors have been consistently popping up throughout your project. It may be more beneficial for you to focus on mastering the fundamentals as opposed to diving straight into flexbox techniques.
In addition, I've crafted a Fiddle showcasing an alternative approach. I've completely revamped it without utilizing flexbox
.
What I've executed is establish two columns that each span exactly 50% of the page width. They both align to the left. This ensures that the text on the left and right sides maintains consistent positioning. I've also tidied up the code (such as rectifying your usage of ul
and li
, eliminating unnecessary classes, recognizing the need to type &
instead of plain ampersands (&
)... there were several issues). Furthermore, the '01', '02' labels are now automatically generated through CSS.
The overall appearance of the document has evolved significantly. I recommend reviewing it thoroughly and comprehending the function of each line of code. This process will undoubtedly expand your knowledge base.
I trust this explanation proves beneficial.