1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

AlphabetAdvent Calendar 2022

Day 11

【K】kbd要素というものがある

Last updated at Posted at 2022-12-10

知らなかったので共有。

これは何?

  • キーボードなどからの入力を表す要素
  • 慣習的に等幅フォントで表示されることが多い

kbd > kbd

kbdの中にkbdを入れることで実際のキー入力を表す用例が紹介されている。

<p>
    選択部分のコピーは
    <kbd><kbd>Ctrl</kbd>+<kbd>C</kbd></kbd>
    でできるぞ
</p>

CSSの例

単純なHTMLをいい感じに表示するなら、kbd:not(:has(kbd))に枠をつけると良さそう

kbd:not(:has(kbd)) {
    border-radius: 4px;
    padding: 1px 2px;
    border: 1px solid black;
}

ちなみに

Kから始まるHTMLの要素、たぶんkbdkeygenだけ

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?