Row
Start
Stretch
0px
Tailwind CSS:
flex-row justify-start items-stretch gap-0
CSS:
display: flex; flex-direction: row; justify-content: flex-start; align-items: stretch; gap: 0px;
React (styled-components):
const Container = styled.div` display: flex; flex-direction: row; justify-content: flex-start; align-items: stretch; gap: 0px; `;