Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- markdownlint-disable-next-line -->
<div align="center"><img height="100px" width="100px" src="https://github.com/krshoss/gardevoir/raw/main/.github/assets/gardevoir.png"><br><h1>The Modern CSS Reset 🚀</h5></div>
<div align="center"><img height="100px" width="100px" src="https://github.com/kkrishguptaa/reseter.css/raw/main/.github/assets/gardevoir.png"><br><h1>The Modern CSS Reset 🚀</h5></div>
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

Fix invalid heading tag closure (and add image alt text).

Line 2 opens with <h1> but closes with </h5>, which breaks valid HTML structure. Also consider adding alt for accessibility.

Proposed fix
-<div align="center"><img height="100px" width="100px" src="https://github.com/kkrishguptaa/reseter.css/raw/main/.github/assets/gardevoir.png"><br><h1>The Modern CSS Reset 🚀</h5></div>
+<div align="center"><img height="100px" width="100px" src="https://github.com/kkrishguptaa/reseter.css/raw/main/.github/assets/gardevoir.png" alt="Gardevoir logo"><br><h1>The Modern CSS Reset 🚀</h1></div>
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<div align="center"><img height="100px" width="100px" src="https://github.com/kkrishguptaa/reseter.css/raw/main/.github/assets/gardevoir.png"><br><h1>The Modern CSS Reset 🚀</h5></div>
<div align="center"><img height="100px" width="100px" src="https://github.com/kkrishguptaa/reseter.css/raw/main/.github/assets/gardevoir.png" alt="Gardevoir logo"><br><h1>The Modern CSS Reset 🚀</h1></div>
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@README.md` at line 2, The HTML snippet in the README has a mismatched heading
closure and missing image alt text; update the closing tag for the heading
opened with <h1> (replace the erroneous </h5>) so it properly closes as </h1>,
and add a meaningful alt attribute to the <img> element (e.g., alt="Gardevoir
logo" or similar) to improve accessibility while keeping the existing attributes
and layout intact.


## 🤓 Benefits

Expand All @@ -14,15 +14,15 @@

There are many inconsistencies between browsers. Like Firefox 3 has a margin on top of paragraphs but Internet Explorer 7 doesn't have any margin. There are thousands of browsers with hundreds of versions. Each version at least has 500+ inconsistencies with different browsers' different versions. How to keep up? This is an easy to use solution called **Gardevoir**

![Browser Inconsistencies](https://github.com/krshoss/gardevoir/raw/main/.github/assets/css_reset.png)
![Browser Inconsistencies](https://github.com/kkrishguptaa/reseter.css/raw/main/.github/assets/css_reset.png)

## 🆚 There are other resets, why Gardevoir?

| Feature | Gardevoir | Normalize.css | Sanitize.css | Reset.css |
| :-------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------: |
| Normalizations | ✅ | ✅ | ✅ | ❌ |
| Basic elemental styles | ✅ | Partial | ✅ | ❌ |
| Size (by [bundle phobia](http://bundlephobia.com/)) | Compile with Sass | ![GitHub file size in bytes](https://img.shields.io/github/size/necolas/normalize.css/normalize.css?style=flat-square) | ![GitHub file size in bytes](https://img.shields.io/github/size/csstools/sanitize.css/sanitize.css?style=flat-square) | ![GitHub file size in bytes](https://img.shields.io/github/size/shannonmoeller/reset-css/reset.css?style=flat-square) |
| Size (by [bundle phobia](https://bundlephobia.com/)) | Compile with Sass | ![GitHub file size in bytes](https://img.shields.io/github/size/necolas/normalize.css/normalize.css?style=flat-square) | ![GitHub file size in bytes](https://img.shields.io/github/size/csstools/sanitize.css/sanitize.css?style=flat-square) | ![GitHub file size in bytes](https://img.shields.io/github/size/shannonmoeller/reset-css/reset.css?style=flat-square) |
| Minified version | Compile with Sass | ❌ (Minify yourself) | ❌(Minify yourself) | ❌(Minify yourself) | |
| Box sizing | ✅ | ❌ | ✅ | ❌ |
| Browser support | Customizable | Last 3 versions | Last 3 versions | Unknown |
Expand Down Expand Up @@ -58,7 +58,7 @@ There are many inconsistencies between browsers. Like Firefox 3 has a margin on

4. How about reading a guide for best performance? Here's the link to [optimizing Gardevoir for production](#-optimize)

5. Lastly you can view [our wiki for best practices and performance guides](https://github.com/krshoss/gardevoir/wiki/Performance)
5. Lastly you can view [our GitHub Discussions for best practices and performance guides](https://github.com/kkrishguptaa/reseter.css/discussions)

6. 🥳 All Set Now

Expand Down