From db9ea459c848fcfe0922a9d158ebce2641891084 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Gir=C3=A3o=20Serr=C3=A3o?= <5621605+rodrigogiraoserrao@users.noreply.github.com> Date: Wed, 21 Dec 2022 22:14:52 +0000 Subject: [PATCH] Minor fixes for consistency. --- docs/styles/box_sizing.md | 2 +- docs/styles/display.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/styles/box_sizing.md b/docs/styles/box_sizing.md index 0a57c2c6f..5ad0be42a 100644 --- a/docs/styles/box_sizing.md +++ b/docs/styles/box_sizing.md @@ -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. | diff --git a/docs/styles/display.md b/docs/styles/display.md index 12a72808f..c9a52f329 100644 --- a/docs/styles/display.md +++ b/docs/styles/display.md @@ -5,7 +5,7 @@ The `display` property defines whether a widget is displayed or not. ## Syntax ``` -display: none | block; +display: block | none; ``` ### Values