diff --git a/curriculum/challenges/english/blocks/workshop-balance-sheet/62018c3e94434a71af1d5eaa.md b/curriculum/challenges/english/blocks/workshop-balance-sheet/62018c3e94434a71af1d5eaa.md index d389e253974..257139e7437 100644 --- a/curriculum/challenges/english/blocks/workshop-balance-sheet/62018c3e94434a71af1d5eaa.md +++ b/curriculum/challenges/english/blocks/workshop-balance-sheet/62018c3e94434a71af1d5eaa.md @@ -7,7 +7,7 @@ dashedName: step-53 # --description-- -Create a selector to target your `td` elements within your table body. Give them a width to fill the viewport, with a minimum and maximum of `4rem`. This approach ensures that the width is fixed, whereas setting `width` specifically would allow the elements to shrink to the container. +Create a selector to target your `td` elements within your table body and set their `width` to `4rem`. This will ensure the table body cells have a consistent width and align properly with the columns above. # --hints-- @@ -17,35 +17,13 @@ You should have a `tbody td` selector. assert.isNotNull(new __helpers.CSSHelp(document).getStyle('tbody td')); ``` -Your `tbody td` selector should have a `width` property set to `100vw`. +Your `tbody td` selector should have a `width` property set to `4rem`. ```js assert.strictEqual( new __helpers.CSSHelp(document) .getStyle('tbody td') ?.getPropertyValue('width'), - '100vw' -); -``` - -Your `tbody td` selector should have a `min-width` property set to `4rem`. - -```js -assert.strictEqual( - new __helpers.CSSHelp(document) - .getStyle('tbody td') - ?.getPropertyValue('min-width'), - '4rem' -); -``` - -Your `tbody td` selector should have a `max-width` property set to `4rem`. - -```js -assert.strictEqual( - new __helpers.CSSHelp(document) - .getStyle('tbody td') - ?.getPropertyValue('max-width'), '4rem' ); ``` diff --git a/curriculum/challenges/english/blocks/workshop-balance-sheet/62018ec29b3ae674f40bef31.md b/curriculum/challenges/english/blocks/workshop-balance-sheet/62018ec29b3ae674f40bef31.md index 6c8376ee17d..4af462f0ad4 100644 --- a/curriculum/challenges/english/blocks/workshop-balance-sheet/62018ec29b3ae674f40bef31.md +++ b/curriculum/challenges/english/blocks/workshop-balance-sheet/62018ec29b3ae674f40bef31.md @@ -255,9 +255,7 @@ table caption { } tbody td { - width: 100vw; - min-width: 4rem; - max-width: 4rem; + width: 4rem; } --fcc-editable-region-- diff --git a/curriculum/challenges/english/blocks/workshop-balance-sheet/62019093fe30e278e797d2f6.md b/curriculum/challenges/english/blocks/workshop-balance-sheet/62019093fe30e278e797d2f6.md index 4f8500836b3..e83b0033e94 100644 --- a/curriculum/challenges/english/blocks/workshop-balance-sheet/62019093fe30e278e797d2f6.md +++ b/curriculum/challenges/english/blocks/workshop-balance-sheet/62019093fe30e278e797d2f6.md @@ -266,9 +266,7 @@ table caption { } tbody td { - width: 100vw; - min-width: 4rem; - max-width: 4rem; + width: 4rem; } tbody th { diff --git a/curriculum/challenges/english/blocks/workshop-balance-sheet/620191707bc65579ddd3ce15.md b/curriculum/challenges/english/blocks/workshop-balance-sheet/620191707bc65579ddd3ce15.md index b67941d5a15..4b1d8660396 100644 --- a/curriculum/challenges/english/blocks/workshop-balance-sheet/620191707bc65579ddd3ce15.md +++ b/curriculum/challenges/english/blocks/workshop-balance-sheet/620191707bc65579ddd3ce15.md @@ -268,9 +268,7 @@ table caption { } tbody td { - width: 100vw; - min-width: 4rem; - max-width: 4rem; + width: 4rem; } tbody th { diff --git a/curriculum/challenges/english/blocks/workshop-balance-sheet/620192a767533a7ad19d96d7.md b/curriculum/challenges/english/blocks/workshop-balance-sheet/620192a767533a7ad19d96d7.md index fe0b8d36b07..1957c7fcf40 100644 --- a/curriculum/challenges/english/blocks/workshop-balance-sheet/620192a767533a7ad19d96d7.md +++ b/curriculum/challenges/english/blocks/workshop-balance-sheet/620192a767533a7ad19d96d7.md @@ -268,9 +268,7 @@ table caption { } tbody td { - width: 100vw; - min-width: 4rem; - max-width: 4rem; + width: 4rem; } tbody th { diff --git a/curriculum/challenges/english/blocks/workshop-balance-sheet/6201995d9ab88e80f1989dce.md b/curriculum/challenges/english/blocks/workshop-balance-sheet/6201995d9ab88e80f1989dce.md index 62a9aaf49c3..d1abc2ff08c 100644 --- a/curriculum/challenges/english/blocks/workshop-balance-sheet/6201995d9ab88e80f1989dce.md +++ b/curriculum/challenges/english/blocks/workshop-balance-sheet/6201995d9ab88e80f1989dce.md @@ -257,9 +257,7 @@ table caption { } tbody td { - width: 100vw; - min-width: 4rem; - max-width: 4rem; + width: 4rem; } tbody th { diff --git a/curriculum/challenges/english/blocks/workshop-balance-sheet/620199c7a7a32c81d4db3410.md b/curriculum/challenges/english/blocks/workshop-balance-sheet/620199c7a7a32c81d4db3410.md index abc732671cd..b3b2a60d2a0 100644 --- a/curriculum/challenges/english/blocks/workshop-balance-sheet/620199c7a7a32c81d4db3410.md +++ b/curriculum/challenges/english/blocks/workshop-balance-sheet/620199c7a7a32c81d4db3410.md @@ -255,9 +255,7 @@ table caption { } tbody td { - width: 100vw; - min-width: 4rem; - max-width: 4rem; + width: 4rem; } tbody th { diff --git a/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a1a7af32c287bd6b8183.md b/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a1a7af32c287bd6b8183.md index 5a6587c1e25..e5ce95a3307 100644 --- a/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a1a7af32c287bd6b8183.md +++ b/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a1a7af32c287bd6b8183.md @@ -253,9 +253,7 @@ table caption { } tbody td { - width: 100vw; - min-width: 4rem; - max-width: 4rem; + width: 4rem; } tbody th { diff --git a/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a1cc668a34888f5b2f52.md b/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a1cc668a34888f5b2f52.md index 9c108f46500..1f3c2a8cc50 100644 --- a/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a1cc668a34888f5b2f52.md +++ b/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a1cc668a34888f5b2f52.md @@ -258,9 +258,7 @@ table caption { } tbody td { - width: 100vw; - min-width: 4rem; - max-width: 4rem; + width: 4rem; } tbody th { diff --git a/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a20d742f5c89736c8cfb.md b/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a20d742f5c89736c8cfb.md index 1f0a98f6c62..cd64e795c0c 100644 --- a/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a20d742f5c89736c8cfb.md +++ b/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a20d742f5c89736c8cfb.md @@ -277,9 +277,7 @@ table caption { } tbody td { - width: 100vw; - min-width: 4rem; - max-width: 4rem; + width: 4rem; } tbody th { diff --git a/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a42e39bf3b95b6a33bf3.md b/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a42e39bf3b95b6a33bf3.md index 7d960c8d8a3..7a2145c50bd 100644 --- a/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a42e39bf3b95b6a33bf3.md +++ b/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a42e39bf3b95b6a33bf3.md @@ -301,9 +301,7 @@ table caption { } tbody td { - width: 100vw; - min-width: 4rem; - max-width: 4rem; + width: 4rem; } tbody th { diff --git a/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a4adcc6414968b391592.md b/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a4adcc6414968b391592.md index 5420a0da5e4..6d3ae2570ba 100644 --- a/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a4adcc6414968b391592.md +++ b/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a4adcc6414968b391592.md @@ -246,9 +246,7 @@ table caption { } tbody td { - width: 100vw; - min-width: 4rem; - max-width: 4rem; + width: 4rem; } tbody th { diff --git a/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a5258af7b398b030bfaf.md b/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a5258af7b398b030bfaf.md index c2a4a631cd3..ed5688a6453 100644 --- a/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a5258af7b398b030bfaf.md +++ b/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a5258af7b398b030bfaf.md @@ -273,9 +273,7 @@ table caption { } tbody td { - width: 100vw; - min-width: 4rem; - max-width: 4rem; + width: 4rem; } tbody th { diff --git a/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a59be346d399c21d10b1.md b/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a59be346d399c21d10b1.md index 7f5b2886640..c901ce1c4bc 100644 --- a/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a59be346d399c21d10b1.md +++ b/curriculum/challenges/english/blocks/workshop-balance-sheet/6201a59be346d399c21d10b1.md @@ -255,9 +255,7 @@ table caption { } tbody td { - width: 100vw; - min-width: 4rem; - max-width: 4rem; + width: 4rem; } tbody th { @@ -541,9 +539,7 @@ table caption { } tbody td { - width: 100vw; - min-width: 4rem; - max-width: 4rem; + width: 4rem; } tbody th {