Skip to content

Instantly share code, notes, and snippets.

View krstivoja's full-sized avatar
:bowtie:
Working on something exciting

Marko Krstic krstivoja

:bowtie:
Working on something exciting
View GitHub Profile
@ismasan
ismasan / css_grid_draggable.html
Last active May 28, 2024 16:08
Example for reordering CSS grids layout
<html>
<head>
<title>grid</title>
<style>
body {padding: 0; margin: 0;}
.container {
display: grid;
grid-template-rows: 200px repeat(4, 100px);
grid-template-columns: repeat(4, 1fr);
grid-template-areas: "header header header header"