Created
April 4, 2025 04:41
-
-
Save psahni/99f30afb0013faa24c4e47dd8b4e47be to your computer and use it in GitHub Desktop.
css learnings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
img { | |
display: block; | |
max-width: 100% | |
} | |
header { | |
min-height: 300px; // allowed to grow // 80vh | |
} | |
.wrapper { | |
max-width: 960px; | |
margin-inline: auto; // It centers the content (left and right margin) | |
} | |
auto vs 100% | |
displa: flex | |
gap: 3rem | |
flex-wrap: wrap; // browser will figure out, don't worry | |
display: grid |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment