qns(quiz): update for translations
This commit is contained in:
parent
f354a107ff
commit
1ac8be548b
|
|
@ -1,3 +1,4 @@
|
|||
.DS_Store
|
||||
.vscode
|
||||
node_modules
|
||||
node_modules
|
||||
crowdin.yml
|
||||
|
|
@ -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 |
|
||||
|
|
|
|||
|
|
@ -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. |
|
||||
|
|
|
|||
Loading…
Reference in New Issue