Here are some options to help improve your experience
Building fast web pages
Creating a design language
From Nunjucks to NPM, see how I work
Designing with accessibility in mind
From rapid prototypes to hifi designs
Increasing conversion based on data
Avoiding repetition and increasing consistency in design
Flex can be used to align items easily and efficiently. The following classes can be used to align items inside a flex parent.
NOTE: These classes can be appended with breakpoint modifiers to allow different alignment/justification on different screen sizes.
<div class="flex-row flex-justify-between"> <div> Flex Item </div> <div> Flex Item </div> </div>
<div class="flex-row flex-justify-around"> <div> Flex Item </div> <div> Flex Item </div> </div>
<div class="flex-row flex-justify-start"> <div> Flex Item </div> <div> Flex Item </div> </div>
<div class="flex-row flex-justify-end"> <div> Flex Item </div> <div> Flex Item </div> </div>
<div class="flex-col flex-align-center"> <div> Flex Item </div> <div> Flex Item </div> </div>
<div class="flex-col flex-align-start"> <div> Flex Item </div> <div> Flex Item </div> </div>
<div class="flex-col flex-align-end"> <div> Flex Item </div> <div> Flex Item </div> </div>