I think this incorporates 3 properties →
flex: 0 0 74%;
Shrink, grow and width, Right?
Should we bifurcate it because I want to write width like this →
width: calc (70.4% - 20px;)
I tried it like this →
padding: 10px;
flex: 0 0 74%;
width: calc(74%-20px);
and this seems to be working.
But do you think that writing this is a good practice →
flex: 0 0 74%;
width: calc(74%-20px);
because the later is actually overriding the 3rd property set in the flex i.e. 74%.
I think the last property in this flex: 0 0 74%;
is flex-basis
property.