Sascha Schulz
2023-10-24 4d46431f0a310f3fe2d74f54dd2b67340c1e68a2
add css grid template
1 Dateien hinzugefügt
17 ■■■■■ Geänderte Dateien
templates/008-css/css-grid.html 17 ●●●●● Patch | Ansicht | Raw | Blame | Historie
templates/008-css/css-grid.html
Neue Datei
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Grid</title>
        <style>
            .grid {
                display: grid;
            }
        </style>
    </head>
    <body>
        <div class="grid">
            <div></div>
        </div>
    </body>
</html>