The `flex-basis` property specifies the initial size of the item before CSS makes adjustments with `flex-shrink` or `flex-grow`.
The units used by the `flex-basis` property are the same as other size properties (`px`, `em`, `%`, etc.). The value `auto` sizes items based on the content.
# --instructions--
Set the initial size of the boxes using `flex-basis`. Add the CSS property `flex-basis` to both `#box-1` and `#box-2`. Give `#box-1` a value of `10em` and `#box-2` a value of `20em`.
# --hints--
The `#box-1` element should have a `flex-basis` property.
```js
assert($('#box-1').css('flex-basis') != 'auto');
```
The `#box-1` element should have a `flex-basis` value of `10em`.