css grid
Data utworzenia: 2025-05-26 09:49:46
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Courier New', Courier, monospace;
background-color: #222;
color: beige;
}
.container {
display: grid;
/* fr to mnozy x iles poprzedni */
grid-template-columns: repeat(3, 1fr);
grid-template-rows: 100px 500px 300px;
gap: 30px 100px;
}
.box {
background-color: #f513f1;
display: flex;
justify-content: center;
align-items: center;
}
.box:nth-child(even) {
background-color: gold;
}
Powrót