diff options
author | bptato <nincsnevem662@gmail.com> | 2024-11-08 20:45:56 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-11-08 20:45:56 +0100 |
commit | f6d7c5372b81b9cf7ce76df67b0e61981f96d60f (patch) | |
tree | 7d385e4bd35e4c7209658e6bd99802b1a6b51452 /todo | |
parent | b2f70da50f8934fea199150c35c1763e03f72d6d (diff) | |
download | chawan-f6d7c5372b81b9cf7ce76df67b0e61981f96d60f.tar.gz |
layout: fix initial flex item width calculation
Before, the initial layout of a flex item would have inherited the parent's sizing constraint. This almost worked, except when a descendant of a flex item with an unspecified width would resolve its percentage against this incorrectly inherited width - per standard, this must resolve to auto. Also, the shrink case was wrong, because it did not scale the unit to the respective widths; the standard mandates this as well. Hopefully I got it right this time. Finally, this fixes positioned inline container blocks not being set as the absolute container.
Diffstat (limited to 'todo')
-rw-r--r-- | todo | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/todo b/todo index 8e107b1e..439b6cc4 100644 --- a/todo +++ b/todo @@ -54,8 +54,7 @@ layout engine: * will probably need special treatment, as borders must round to 1ch in x direction and 1em in y direction. - table layout: include caption in width calculation -- flexbox: align-self, align-items, justify-content, proper margin handling, - proper flex base size resolution +- flexbox: align-self, align-items, justify-content, proper margin handling - details element - overflow - partial layout, layout caching |