fix(curriculum): remove unclear sentence (#49564)

fix/instruction-about-css-td-width-property
pull/49565/head
anik-75 2023-03-02 17:02:17 +05:30 committed by GitHub
parent dbf124acf3
commit 5528ec39a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ dashedName: step-52
# --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 (because we are using flexbox).
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.
# --hints--