Update index.html

This commit is contained in:
hossein s. borhani 2022-03-14 02:37:12 +03:30 committed by GitHub
parent ec99bfb2aa
commit d368e7103e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,6 +8,30 @@
<body> <body>
<style>
.grid {
display: grid;
grid-template-columns: repeat(6, 200px);
grid-auto-rows: 32px;
}
span {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
body {background: #222;}
a {color: #ccc;
border: 1px solid #666;
padding-left: 15px;
}
</style>
<span> <span>
<div class="grid"> <div class="grid">
@ -121,28 +145,4 @@
</body> </body>
<style>
.grid {
display: grid;
grid-template-columns: repeat(6, 200px);
grid-auto-rows: 32px;
}
span {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
body {background: #222;}
a {color: #ccc;
border: 1px solid #666;
padding-left: 15px;
}
</style>
</html> </html>