I'm facing a challenge with my webpage that consists of multiple divs placed next to each other, each containing an image and text. Due to varying content lengths, the height of these divs ends up being different. Is there a way, without manually setting heights, to make all divs match the height of the tallest one while keeping the layout responsive? I tried using flexbox within a container which worked but disrupted the responsiveness - the divs wouldn't adjust their width based on browser size.
I attempted some jquery solutions found online, but for reasons unknown to me, they didn't work. If anyone has a solution, I'm willing to give it another shot.
The current page layout looks like this:
I encountered issues with the tablet layout not functioning properly without having a separate col-m-1 class. Since I lack experience with responsive design, I relied on W3C tutorials to guide me through this process.