qns(quiz): update for translations

This commit is contained in:
Yangshun 2023-04-13 16:21:16 +08:00
parent f354a107ff
commit 1ac8be548b
3 changed files with 4 additions and 3 deletions

3
.gitignore vendored
View File

@ -1,3 +1,4 @@
.DS_Store
.vscode
node_modules
node_modules
crowdin.yml

View File

@ -12,7 +12,7 @@ Cookies, `localStorage`, and `sessionStorage`, are all:
## Differences
| | Cookie | `localStorage` | `sessionStorage` |
| Property | Cookie | `localStorage` | `sessionStorage` |
| --- | --- | --- | --- |
| Initiator | Client or server. Server can use `Set-Cookie` header | Client | Client |
| Expiry | Manually set | Forever | On tab close |

View File

@ -4,7 +4,7 @@ title: What's the difference between `inline` and `inline-block`?
Let's also compare with `display: block` for completeness sake.
| | `block` | `inline-block` | `inline` |
| Property | `block` | `inline-block` | `inline` |
| --- | --- | --- | --- |
| Size | Fills up the width of its parent container. | Depends on content. | Depends on content. |
| Positioning | Start on a new line and tolerates no HTML elements next to it (except when you add `float`) | Flows along with other content and allows other elements beside it. | Flows along with other content and allows other elements beside it. |