Recently I came across these two values for width
of an element, however I did not understand how to use them and what they are for ...
This is what the Mozilla documentation says, but I did not understand:
max-content
The preferred intrinsic width. (width: min-content)
----------------------------------------------- -
min-content
The preferred minimal intrinsic width. (width: max-content)
----------------------------------------------- --------------
Source: link
What would these values really be, and how do the elements behave with them? Are these values already accepted by all browsers?
If possible I would like one or two didactic examples:)