Skip to content

Commit 213477a

Browse files
AmeerMoustafaAmeerMoustafa
authored andcommitted
Added a CSS reset function snippet
1 parent b4161e2 commit 213477a

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

public/data/css.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,19 @@
5454
],
5555
"tags": ["css", "flexbox", "columns", "layout"],
5656
"author": "technoph1le"
57+
},
58+
{
59+
"title": "CSS Reset",
60+
"description": "Resets some default browser styles, ensuring consistency across browsers.",
61+
"code": [
62+
"* {",
63+
" margin: 0;",
64+
" padding: 0;",
65+
" box-sizing: border-box",
66+
"}"
67+
],
68+
"tags": ["css", "reset", "browser", "layout"],
69+
"author": "AmeerMoustafa"
5770
}
5871
]
5972
},

0 commit comments

Comments
 (0)