I found many articles and tutorials but can't find specific mentions about this doubt.
Does the use of flex
imply that the element is also set to display: flex
?
Or do I always need to specify the display
property when using other flex properties? (will just setting flex: ..
not have any effect without display: flex
?)
And if it is in any way implicit, which elements would be set to display: flex
? Just the flex container or also the flex items?