【参考】
https://coliss.com/articles/build-websites/operation/css/css-reset-for-modern-browser.html
https://webdesign-trends.net/entry/8137
2024年、現在の環境に適したリセットCSS
2024年、現在の環境に適したリセットCSSのまとめ
...
モダンブラウザに最適化された新しいリセットCSS – A (more) Modern CSS Reset
/* box-sizing: border-box;を設定 */
*,
*::before,
*::after {
box-sizing: border-box;
}
/* フォントサイズの拡大を防ぐ */
html {
-moz-text-size-adjust: none;
-webkit-text-size-adjust: none;
text-size-adjust: none;
}
/* デフォルトのマージンを削除、作成するCSSの制御を改善するため */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
margin: 0;
}
/* リストのスタイルを削除、これはデフォルトのスタイルが削除されることを示唆します */
ul[role='list'],
ol[role='list'] {
list-style: none;
}
/* bodyのデフォルトを設定 */
body {
min-height: 100vh;
line-height: 1.5;
}
/* 見出しやインタラクティブ要素のline-heightを設定 */
h1, h2, h3, h4,
button, input, label {
line-height: 1.1;
}
/* 見出しのテキスト折り返しをbalanceに設定 */
h1, h2,
h3, h4 {
text-wrap: balance;
}
/* classを持たないa要素はデフォルトのスタイルを継承 */
a:not([class]) {
text-decoration-skip-ink: auto;
color: currentColor;
}
/* 画像の扱いを簡単にする */
img,
picture {
max-width: 100%;
display: block;
}
/* inputやbuttonなどのfontは継承 */
input, button,
textarea, select {
font: inherit;
}
/* rows属性のないtextareasが小さくならないようにする */
textarea:not([rows]) {
min-height: 10em;
}
/* アンカーされている要素には余分なスクロールマージンが必要 */
:target {
scroll-margin-block: 5ex;
}
【参考】
https://coliss.com/articles/build-websites/operation/css/a-more-modern-css-reset.html
acab/reset.css
CSSの新機能を効果的にうまく使った、新時代のCSSリセット。
詳細度を0にする:where()、iOSのSafariで100vhが高さいっぱいにならないを解決できる新しいビューポート単位など、CSSの便利な新機能の各ブラウザでのサポートも完了し、すでに使用されている人も少なくないと思われる。
CSSリセットとして使用するだけでなく、CSSの勉強にもなるCSSリセットである。
*,
*::before,
*::after {
margin: 0; /* マージンは0に */
padding: 0; /* パディングも常に0に */
box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
}
:where([hidden]:not([hidden='until-found'])) {
display: none !important; /* hiddenは非表示を意味します */
}
:where(html) {
-webkit-text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}
@supports not (min-block-size: 100dvb) {
:where(html) {
block-size: 100%;
}
}
@media (prefers-reduced-motion: no-preference) {
:where(html:focus-within) {
scroll-behavior: smooth; /* 何かにフォーカスがある場合のみスムーズスクロール */
}
}
:where(body) {
block-size: 100%; /* サファリ以外のブラウザのフォールバック */
block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
line-height: 1.5; /* アクセシブルな行の高さ */
font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
-webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}
:where(input, button, textarea, select) {
font: inherit; /* フォーム コントロールは親フォントを継承 */
color: inherit; /* カラーも継承 */
}
:where(textarea) {
resize: vertical; /* テキストエリアの水平リサイズを無効に */
resize: block;
}
:where(button, label, select, summary, [role='button'], [role='option']) {
cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}
:where(:disabled) {
cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}
:where(label:has(> input:disabled), label:has(+ input:disabled)) {
cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}
:where(button) {
border-style: solid; /* ボタンのボーダーのスタイルを設定しやすくする */
}
:where(a) {
text-underline-offset: 0.2ex; /* 下線の上にスペースを追加する */
}
:where(ul, ol) {
list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}
:where(img, svg, video, canvas, audio, iframe, embed, object) {
display: block; /* 置換された要素をより予測可能にする */
}
:where(img, picture, svg) {
max-inline-size: 100%; /* images should never overflow past the available space */
block-size: auto; /* アスペクト比を保持 */
}
:where(p, h1, h2, h3, h4, h5, h6) {
overflow-wrap: break-word; /* 長い単語は改行 */
}
:where(h1, h2, h3) {
line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
}
:where(hr) { /* より一貫性のある、スタイリッシュなhr */
border: none;
border-block-start: 1px solid;
color: inherit;
block-size: 0;
overflow: visible;
}
:where(:focus-visible) { /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
outline: 2px solid var(--focus-color, Highlight);
outline-offset: 2px;
}
/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
clip-path: inset(50%) !important;
height: 1px !important;
width: 1px !important;
overflow: hidden !important;
position: absolute !important;
white-space: nowrap !important;
border: 0 !important;
}
【参考】
https://coliss.com/articles/build-websites/operation/css/acab-reset-css.html