Remove Scrolling from Tables

How can I extend tables to the content width, so that there is no scroll?
Can the table adjust its width according to the content?

Here is the link to example page in question:

https://pneumaticspro.ca/collections/az-pneumatica-mechanical-and-micro-valves

  • Here is the solution for you @Satwinder1
  • Please follow these steps:

  • Then find the theme.css or theme.css file.
  • Then add the following code at the end of the file and press ‘Save’ to save it.
.collection--description {
    max-width: 100% !important;
}
.rte table {
    width: fit-content !important;
}
  • Here is the result you will achieve:

  • Please press ‘Like’ and mark it as ‘Solution’ if you find it helpful. Thank you.