New! My 44-page ebook "CSS in 44 minutes" is out! 😃
#flex-basis
Defines the initial size of a flexbox item.
            default
          flex-basis: auto;
        
The element will be automatically sized based on its content, or on any height or width value if they are defined.
          flex-basis: 80px;
        
You can define pixel or (r)em values. The element will wrap its content to avoid any overflow.