Height and Width Settings
When entering height and width values in certain places in the Flare Online interface (e.g., inserting multimedia), you can select from a variety of settings (most definitions are taken from developer.mozilla.org).
| 
                                                                         Setting  | 
                                                                    
                                                                         Description  | 
                                                                
|---|---|
| 
                                                                         max-content  | 
                                                                    
                                                                         The intrinsic preferred width.  | 
                                                                
| 
                                                                         min-content  | 
                                                                    
                                                                         The intrinsic minimum width.  | 
                                                                
| 
                                                                         fit-content  | 
                                                                    
                                                                         Uses the available space, but not more than max-content.  | 
                                                                
| 
                                                                         auto  | 
                                                                    
                                                                         The browser will calculate and select a width for the specified element.  | 
                                                                
| 
                                                                         inherit  | 
                                                                    
                                                                         Takes the computed value of the property from its parent element.  | 
                                                                
| 
                                                                         initial  | 
                                                                    
                                                                         Applies the initial (or default) value of a property to an element.  | 
                                                                
| 
                                                                         revert  | 
                                                                    
                                                                         Rolls back the cascaded value of the property from its current value to the value the property would have had if no changes had been made.  | 
                                                                
| 
                                                                         revert-layer  | 
                                                                    
                                                                         Rolls back the value of a property in a cascade layer to the value of the property in a CSS rule matching the element in a previous cascade layer.  | 
                                                                
| 
                                                                         unset  | 
                                                                    
                                                                         Resets a property to its inherited value if the property naturally inherits from its parent, and to its initial value if not.  | 
                                                                

