-
-
Save kobitoDevelopment/5f9f028d8cc5913f21b1d97bf119c2ae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .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); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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