Skip to content

Instantly share code, notes, and snippets.

@arasovic
Created March 21, 2023 13:03
Show Gist options
  • Save arasovic/49c7b2883adda6321a9bfceb50e77128 to your computer and use it in GitHub Desktop.
Save arasovic/49c7b2883adda6321a9bfceb50e77128 to your computer and use it in GitHub Desktop.
flexbox layout tutorial
<div
style={{
display: 'flex',
backgroundColor: 'red',
flexDirection: 'row',
justifyContent: 'space-between',
}}
>
<div style={{ backgroundColor: 'blue', width: '100%' }}>
<div style={{ display: 'flex', flexDirection: 'column', backgroundColor: 'red', width: '100%' }}>
<div
style={{
display: 'flex',
flexDirection: 'row',
backgroundColor: 'gray',
justifyContent: 'space-between',
}}
>
<div style={{ backgroundColor: 'green', width: '40%' }}>sol</div>
<div style={{ backgroundColor: 'white', width: '60%' }}>sağ</div>
</div>
<div>alt</div>
</div>
</div>
<div style={{ backgroundColor: 'pink', width: '100%' }}>sağ taraf</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment