Skip to content

Commit

Permalink
animation page
Browse files Browse the repository at this point in the history
  • Loading branch information
raja8287 committed Oct 26, 2021
1 parent d40444d commit 162f395
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
1 change: 0 additions & 1 deletion firs_css.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
width: 100%;
z-index: -1;
opacity: 0.7;
background: violet;
}
.btn1{
background: #fff;
Expand Down
23 changes: 22 additions & 1 deletion grid1.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
<head>
<style>
.wrapper1{
display: grid;
gap:1px;
height:40px;
background:pink;
align-items: center;
grid-template-columns: 1em;
grid-template-rows: 1em;
grid-template-areas: 'a b c'
'd e f';
}
.wrapper1 div{
background:yellow;
}
.contanier{
display: grid;
grid-gap: 20px;
Expand Down Expand Up @@ -44,5 +58,12 @@
<div class="item5">item5</div>
<div class="item5">item6</div>
</div>
<div></div>
<div class="wrapper1">
<div class="a">item1</div>
<div class="b">item2</div>
<div class="c">item3</div>
<div class="d">item4</div>
<div class="e">item5</div>
<div class="f">item6</div>
</div>
</body>

0 comments on commit 162f395

Please sign in to comment.