diff --git a/lib/Drupal/views/Plugin/views/style/Table.php b/lib/Drupal/views/Plugin/views/style/Table.php
index e3076b43c4c2b59b2c33a83ddb9d62edae834cc9..a7ad19017dfb8745b7459f25b0ae7e021a2ec97f 100644
--- a/lib/Drupal/views/Plugin/views/style/Table.php
+++ b/lib/Drupal/views/Plugin/views/style/Table.php
@@ -325,6 +325,16 @@ public function buildOptionsForm(&$form, &$form_state) {
           ),
         ),
       );
+      $form['info'][$field]['responsive'] = array(
+        '#type' => 'select',
+        '#default_value' => isset($this->options['info'][$field]['responsive']) ? $this->options['info'][$field]['responsive'] : '',
+        '#options' => array('' => t('None'), RESPONSIVE_PRIORITY_MEDIUM => t('Medium'), RESPONSIVE_PRIORITY_LOW => t('Low')),
+        '#states' => array(
+          'visible' => array(
+            $column_selector => array('value' => $field),
+          ),
+        ),
+      );
 
       // markup for the field name
       $form['info'][$field]['name'] = array(
diff --git a/theme/theme.inc b/theme/theme.inc
index d9aacecfcda3f204cfde294ff8559a7f5d0e72bf..420307452decc2eae0bc8f933aa8e60362928a47 100644
--- a/theme/theme.inc
+++ b/theme/theme.inc
@@ -477,6 +477,9 @@ function template_preprocess_views_view_table(&$vars) {
   $active   = !empty($handler->active) ? $handler->active : '';
   $order    = !empty($handler->order) ? $handler->order : 'asc';
 
+  // A boolean variable which stores whether the table has a responsive class.
+  $responsive = FALSE;
+
   $query    = tablesort_get_query_parameters();
   if (isset($view->exposed_raw_input)) {
     $query += $view->exposed_raw_input;
@@ -534,6 +537,11 @@ function template_preprocess_views_view_table(&$vars) {
         }
         $vars['header_classes'][$field] .= $class;
       }
+      // Add responsive header classes.
+      if (!empty($options['info'][$field]['responsive'])) {
+        $vars['header_classes'][$field] .= ' ' . $options['info'][$field]['responsive'];
+        $responsive = TRUE;
+      }
       // Add a CSS align class to each field if one was set
       if (!empty($options['info'][$field]['align'])) {
         $vars['header_classes'][$field] .= ' ' . drupal_clean_css_identifier($options['info'][$field]['align']);
@@ -568,6 +576,11 @@ function template_preprocess_views_view_table(&$vars) {
 
         $vars['field_classes'][$field][$num] .= $classes;
       }
+      // Add responsive header classes.
+      if (!empty($options['info'][$field]['responsive'])) {
+        $vars['field_classes'][$field][$num] .= ' ' . $options['info'][$field]['responsive'];
+      }
+
       $vars['field_attributes'][$field][$num] = array();
 
       if (!empty($fields[$field]) && empty($fields[$field]->options['exclude'])) {
@@ -649,6 +662,15 @@ function template_preprocess_views_view_table(&$vars) {
   if (!empty($handler->options['summary'])) {
     $vars['attributes_array'] = array('summary' => $handler->options['summary']);
   }
+  // If the table has headers and it should react responsively to columns hidden
+  // with the classes represented by the constants RESPONSIVE_PRIORITY_MEDIUM
+  // and RESPONSIVE_PRIORITY_LOW, add the tableresponsive behaviors.
+  if (count($vars['header']) && $responsive) {
+    drupal_add_library('system', 'drupal.tableresponsive');
+    // Add 'responsive-enabled' class to the table to identify it for JS.
+    // This is needed to target tables constructed by this function.
+    $vars['attributes']['class'][] = 'responsive-enabled';
+  }
 }
 
 /**
@@ -762,6 +784,15 @@ function template_preprocess_views_view_grid(&$vars) {
   if (!empty($handler->options['summary'])) {
     $vars['attributes_array'] = array('summary' => $handler->options['summary']);
   }
+  // If the table has headers and it should react responsively to columns hidden
+  // with the classes represented by the constants RESPONSIVE_PRIORITY_MEDIUM
+  // and RESPONSIVE_PRIORITY_LOW, add the tableresponsive behaviors.
+  if (count($vars['header']) && $responsive) {
+    drupal_add_library('system', 'drupal.tableresponsive');
+    // Add 'responsive-enabled' class to the table to identify it for JS.
+    // This is needed to target tables constructed by this function.
+    $vars['attributes']['class'][] = 'responsive-enabled';
+  }
 }
 
 /**
diff --git a/views_ui/theme/theme.inc b/views_ui/theme/theme.inc
index 72d513f4a6f1d460204d88f94049e1c297814b65..530aec5a7a65c8af66e1ee5f8a2be2222ba08e48 100644
--- a/views_ui/theme/theme.inc
+++ b/views_ui/theme/theme.inc
@@ -396,6 +396,10 @@ function theme_views_ui_style_plugin_table($variables) {
       'data' => t('Hide empty column'),
       'align' => 'center',
     ),
+    array(
+      'data' => t('Responsive'),
+      'align' => 'center',
+    ),
   );
   $rows = array();
   foreach (element_children($form['columns']) as $id) {
@@ -427,11 +431,15 @@ function theme_views_ui_style_plugin_table($variables) {
       'data' => drupal_render($form['info'][$id]['empty_column']),
       'align' => 'center',
     );
+    $row[] = array(
+      'data' => drupal_render($form['info'][$id]['responsive']),
+      'align' => 'center',
+    );
     $rows[] = $row;
   }
 
   // Add the special 'None' row.
-  $rows[] = array(t('None'), '', '', '', '', '', array('align' => 'center', 'data' => drupal_render($form['default'][-1])), '');
+  $rows[] = array(t('None'), '', '', '', '', '', array('align' => 'center', 'data' => drupal_render($form['default'][-1])), '', '');
 
   $output .= theme('table', array('header' => $header, 'rows' => $rows));
   $output .= drupal_render_children($form);