Simple CSS trick to Make Table Responsive
Working on the OptionsBrew.com project (website is powered by Drupal 8) I faced the following responsive table issue while browsing content with a table on smaller screens (phone)Broken Table on a smaller screenLuckily there is a simple CSS workaround:in the .css file add the following to table properties: display: block;
overflow-x: auto;like this:table{
border-collapse: separate;
border-spacing: 0;
width:100%;…