Currently working on developing a website, and I am in the process of creating a panel consisting of images accompanied by text overlaid on each image. Initially, my approach involved using a <table>
, but to my surprise, adding <p>
tags resulted in the images stacking into one column rather than maintaining their table format.
Even experimenting with positioning the <p>
elements as absolute did not yield the desired outcome.
I am seeking advice on how to successfully link each <p>
element to the center of its corresponding image while preserving the original table layout. Any suggestions or insights are highly appreciated!