A Pen by raquel olivenza on CodePen.
Created
February 6, 2025 20:24
-
-
Save Raquelolimar/69423f25851e6b48eb8f7775c3cb25a5 to your computer and use it in GitHub Desktop.
llCheckpoint1
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
<div class="gridOne"> | |
<div class="frist"> | |
Hello World | |
</div> | |
<div class="second"> | |
My Fantastic Content | |
</div> | |
</div> | |
<div class="gridTwo"> | |
<div class="sister"> | |
Alba | |
</div> | |
<div class= "brother"> | |
Ibai | |
</div> | |
<div class= "dog"> | |
Zuri | |
</div> | |
</div> | |
<div class="gridThree"> | |
<div class="family"> | |
Love | |
</div> | |
<div class="image"> | |
<img src="https://s3.amazonaws.com/bottega-devcamp/scss/cars/porsche.jpg"> | |
</div> | |
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
.gridOne { | |
display: grid; | |
grid-template-columns: 1fr 1fr; | |
} | |
.second { | |
color:blue; | |
} | |
.gridTwo { | |
display: grid; | |
grid-template-columns: 1fr 1fr 2fr; | |
} | |
.sister { | |
background-color:red; | |
} | |
.brother { | |
background-color: blue; | |
} | |
.dog { | |
background-color: yellow; | |
} | |
.gridThree { | |
display: grid; | |
grid-template-columns: 1fr 2fr; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment