diff options
author | Jasper Ras <jras@hostnet.nl> | 2025-01-13 13:16:06 +0100 |
---|---|---|
committer | Jasper Ras <jras@hostnet.nl> | 2025-01-13 13:16:06 +0100 |
commit | 9232b8d817d4cd4122947375156fa2fa1e9fba14 (patch) | |
tree | e4feb77f2e508f008b78f722e91488bb9a3f3806 /3 resources/css/flexbox.md | |
parent | ed0753ad224f0c65133bd7a63180257eecd9f5e3 (diff) |
vault backup: 2025-01-13 13:16:06
Diffstat (limited to '3 resources/css/flexbox.md')
-rw-r--r-- | 3 resources/css/flexbox.md | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/3 resources/css/flexbox.md b/3 resources/css/flexbox.md deleted file mode 100644 index 9e8f95e..0000000 --- a/3 resources/css/flexbox.md +++ /dev/null @@ -1,12 +0,0 @@ -Flexbox deals with layout always in only one dimension; it's possible to specify which dimension: either vertical or horizontal. - -Two axes: main and cross - -Control main axis: `flex-direction: row|row-reverse|column|column-reverse`. The first two make it a horizontal layout and the latter make it a vertical layout. - -Cross axis is always the opposite of `flex-direction`, so if `flex-direction: row-reverse` the cross axis is `column-reverse`. - -[[TODO]] What is: "writing mode of the document"? Mentioned on the docs. -This document explains: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_flexible_box_layout/Relationship_of_flexbox_to_other_layout_methods#writing_modes - - |