From f8b764cda662d6722de7218a6d49182f4420c153 Mon Sep 17 00:00:00 2001 From: John <14875933+elamje@users.noreply.github.com> Date: Wed, 25 Dec 2019 17:32:04 -0600 Subject: [PATCH] Update tables.md with grammar fix Past tense. --- docs/patterns/tables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/patterns/tables.md b/docs/patterns/tables.md index 2b576fadcb..ccce0e905f 100644 --- a/docs/patterns/tables.md +++ b/docs/patterns/tables.md @@ -20,7 +20,7 @@ There are two strategies you can use when reordering tables. ### Strategy 1: fixed layouts -In order to use this strategy the widths of your columns need to be fixed - that is, they will not change depending on what content is placed in the cells. This can be achieve with either a `table-layout: fixed` or `table-layout: auto` as long as you manually set the width of the cells (eg `50%`). +In order to use this strategy the widths of your columns need to be fixed - that is, they will not change depending on what content is placed in the cells. This can be achieved with either a `table-layout: fixed` or `table-layout: auto` as long as you manually set the width of the cells (eg `50%`). The only thing you need to do is set `display: table` on a `` row while it is dragging.