This commit is contained in:
2025-05-01 14:37:08 -06:00
parent b6008d462e
commit 5cd4571a92
91 changed files with 1009 additions and 36 deletions
+20
View File
@@ -0,0 +1,20 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
width: 100%;
border: 1px solid red;
}
.square {
position: absolute;
width: 200px;
height: 200px;
background-color: pink;
bottom: 0;
left: 0;
}