Skip to content

Instantly share code, notes, and snippets.

@Raquelolimar
Created February 6, 2025 20:24
Show Gist options
  • Save Raquelolimar/69423f25851e6b48eb8f7775c3cb25a5 to your computer and use it in GitHub Desktop.
Save Raquelolimar/69423f25851e6b48eb8f7775c3cb25a5 to your computer and use it in GitHub Desktop.
llCheckpoint1
<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>
.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