Flex box "inlined" as html attributes: (sample taken from LumX website):
<div flex-container="row">
<div flex-item>
<lx-text-field label="Company" disabled="true">
<input type="text" ng-model="textFields.disabled" ng-disabled="true">
</lx-text-field>
</div>
</div>
Or as CSS attributes:
display: flex;
flex-direction: row;
What is the recommended way to use flexbox? As css classes or as html attributes?