Minor fixes for consistency.

This commit is contained in:
Rodrigo Girão Serrão
2022-12-21 22:14:52 +00:00
parent e19ddf0247
commit db9ea459c8
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ box-sizing: border-box | content-box;
### Values
| Values | Description |
| Value | Description |
|------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `border-box` (default) | Padding and border are included in the width and height. If you add padding and/or border the widget will not change in size, but you will have less space for content. |
| `content-box` | Padding and border will increase the size of the widget, leaving the content area unaffected. |

View File

@@ -5,7 +5,7 @@ The `display` property defines whether a widget is displayed or not.
## Syntax
```
display: none | block;
display: block | none;
```
### Values