Skip to content
Open

8.0.2 #935

Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changes to normalize.css

### 8.0.2 (May 23, 2026)

* Correct the box sizing.
* Add button cursor pointer normalization for better UX.

### 8.0.1 (November 4, 2018)

* Fix regression in IE rendering of `main` element.
Expand Down
23 changes: 23 additions & 0 deletions normalize.css
Original file line number Diff line number Diff line change
Expand Up @@ -347,3 +347,26 @@ template {
[hidden] {
display: none;
}

/**
* Correct the visibility of the cursor for buttons to make it pointer by default
*/

button,
[type="button"],
[type="reset"],
[type="submit"] {
cursor: pointer;
}

/**
* Correct the box sizing in all browsers.
*/

*,
*::before,
*::after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "normalize.css",
"version": "8.0.1",
"version": "8.0.2",
"description": "A modern alternative to CSS resets",
"main": "normalize.css",
"style": "normalize.css",
Expand Down