Currently, I am working on a Wordpress plugin that features a Bootstrap 3 responsive table. However, the challenge lies in the fact that the content within the table data cells is more than just a few words.
This specific table consists of three columns: item
, description
, and an image of the product.
Upon crossing the smaller device media query and triggering the table's transition to a responsive design, the presence of the nowrap
element results in the table collapsing into single lines of text that endlessly scroll.
In my attempts to rectify this issue, removing the nowrap
seemed like a potential solution; however, it ultimately prevented the table from maintaining its responsiveness. Are there any graceful solutions available for effectively managing multi-line content within a responsive table?
Your input would be greatly appreciated.