diff --git a/questions/css-questions.md b/questions/css-questions.md index 54b3a56c7..9ad097dc7 100644 --- a/questions/css-questions.md +++ b/questions/css-questions.md @@ -390,20 +390,16 @@ The box model has the following rules: * `none`, `block`, `inline`, `inline-block`, `flex`, `gird`, `table`, `table-row`, `table-cell`, `list-item`. -* none: Hides the element, the element is completely removed -* block: Displays an element as a block element (like
). It starts on a new line, and takes up the whole width
-* inline: Displays an element as an inline element (like ). Any height and width properties will have no effect
-* inline-block: Displays an element as an inline-level block container. The element itself is formatted as an inline element, but you can apply height and width values
-* flex: Displays an element as a block-level flex container
-* grid: Displays an element as a block-level grid container
-* table: Let the element behave like a element
-* table-row: Let the element behave like a
element
-* table-cell: Let the element behave like a element
-* list-item: Let the element behave like a ` element |
+| `table-row` | Behaves like the `
` element |
+| `table-cell` | Behaves like the ` ` element |
+| `list-item` | Behaves like a `