Fix typo.

This commit is contained in:
Rodrigo Girão Serrão
2022-12-15 16:24:11 +00:00
parent 6139e9d6b4
commit 11e41ad2e9

View File

@@ -18,7 +18,7 @@ box-sizing: [border-box|content-box];
## Example
Both widgets in this example have the same height (5).
The top widget has `box-sizing: border-box` which means that padding and border reduces the space for content.
The top widget has `box-sizing: border-box` which means that padding and border reduce the space for content.
The bottom widget has `box-sizing: content-box` which increases the size of the widget to compensate for padding and border.
=== "box_sizing.py"