From 6bbff331445a9385f8ef5eda39f68394ac43bccc Mon Sep 17 00:00:00 2001 From: Romain Menke <11521496+romainmenke@users.noreply.github.com> Date: Thu, 27 Oct 2022 21:25:02 +0200 Subject: [PATCH] Update Overview.bs These examples were modified to illustrate that `&` can be omitted but the source was not updated. _ironically this also illustrates that the shift to proposal 3 also makes it easier to make small mistakes :D_ --- css-nesting-1/Overview.bs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/css-nesting-1/Overview.bs b/css-nesting-1/Overview.bs index cfb1169f20c..3230f28895e 100644 --- a/css-nesting-1/Overview.bs +++ b/css-nesting-1/Overview.bs @@ -53,10 +53,10 @@ Motivation table.colortable td { text-align:center; } - table.colortable td.c { + table.colortable td .c { text-transform:uppercase; } - table.colortable td:first-child, table.colortable td:first-child+td { + table.colortable td :first-child, table.colortable td :first-child+td { border:1px solid black; } table.colortable th {