Skip to content

Commit 8b6f872

Browse files
authored
Merge pull request #5 from AmeerMoustafa/main
Added a CSS reset snippet
2 parents b4161e2 + 213477a commit 8b6f872

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)