3 Tests the behavior of the intrinsic width keywords when applied to max-width
4 by placing them in an uncontrained container (the body). This test passes if
5 min-content is the smallest, max-content and fit-content are shrink wrapped
6 like floats and fill-avaialble is the full width of the body.
9 @import
"resources/width-keyword-classes.css";
12 border:
5px solid red;
17 display: inline-block;
23 <div class=
"max-width-min-content">
24 <span>Min Content
</span> on this box.
27 <div class=
"max-width-max-content">
28 <span>Max Content
</span> on this box.
31 <div class=
"max-width-fill-available">
32 <span>Fill Available
</span> on this box.
35 <div class=
"max-width-fit-content">
36 <span>Fit Content
</span> on this box.