Body grid implemented
This commit is contained in:
parent
7f4a6a11d9
commit
bbced0e571
36
index.html
36
index.html
@ -1,11 +1,33 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
<html>
|
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||||
|
<link rel="stylesheet" href="style.css">
|
||||||
|
<title>Document</title>
|
||||||
</head>
|
</head>
|
||||||
|
<style>
|
||||||
|
.grid-wrapper {
|
||||||
|
display: grid;
|
||||||
|
padding: 4rem 4rem 0 4rem;
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
grid-template-rows: 100px 100px 100px;
|
||||||
|
grid-gap: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box {
|
||||||
</html>
|
background-color: grey;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<body>
|
||||||
|
<div class="balance-list">
|
||||||
|
<h1>Umsätze</h1>
|
||||||
|
<div class="grid-wrapper">
|
||||||
|
<div class="box"></div>
|
||||||
|
<div class="box"></div>
|
||||||
|
<div class="box"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
x
Reference in New Issue
Block a user