Skip to content

Instantly share code, notes, and snippets.

@kobitoDevelopment
Last active March 28, 2026 14:43
Show Gist options
  • Select an option

  • Save kobitoDevelopment/5f9f028d8cc5913f21b1d97bf119c2ae to your computer and use it in GitHub Desktop.

Select an option

Save kobitoDevelopment/5f9f028d8cc5913f21b1d97bf119c2ae to your computer and use it in GitHub Desktop.
.badge {
/* type()必須。省略すると文字列扱いになりcalc()等で使えない */
/* 型一覧: https://www.w3.org/TR/css-values-5/#attr-notation */
font-size: calc(attr(data-size type(<number>), 1) * 1rem);
background: attr(data-color type(<color>), gray);
}
<p class="badge" data-size="1.6" data-color="orange">文字</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment