diff --git a/src/wp-content/themes/twentysixteen/css/blocks.css b/src/wp-content/themes/twentysixteen/css/blocks.css
index 9ddea8073f..81a001b618 100644
--- a/src/wp-content/themes/twentysixteen/css/blocks.css
+++ b/src/wp-content/themes/twentysixteen/css/blocks.css
@@ -198,7 +198,7 @@ p.has-drop-cap:not(:focus)::first-letter {
 .wp-block-table {
 	border-collapse: separate;
 	border-spacing: 0;
-	border-width: 1px 0 0 1px;
+	border-width: inherit;
 	margin: 0 0 1.75em;
 	table-layout: fixed;
 	width: 100%;
@@ -220,6 +220,14 @@ p.has-drop-cap:not(:focus)::first-letter {
 	border-width: 0 1px 1px 0;
 }
 
+.wp-block-table.is-style-stripes {
+	border-bottom: none;
+}
+
+.wp-block-table.is-style-stripes table {
+	border-width: 1px;
+}
+
 .rtl .wp-block-table th,
 .rtl .wp-block-table td {
 	text-align: right;
diff --git a/src/wp-content/themes/twentysixteen/css/editor-blocks.css b/src/wp-content/themes/twentysixteen/css/editor-blocks.css
index 4bf8cbf54f..f363f52517 100644
--- a/src/wp-content/themes/twentysixteen/css/editor-blocks.css
+++ b/src/wp-content/themes/twentysixteen/css/editor-blocks.css
@@ -531,6 +531,14 @@ Description: Used to style blocks in the editor.
 	padding: 0;
 }
 
+.wp-block-table.is-style-stripes {
+	border-bottom: none;
+}
+
+.wp-block-table.is-style-stripes table {
+	border-width: 1px;
+}
+
 .rtl .wp-block-table th,
 .rtl .wp-block-table td {
 	text-align: right;
