エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
The inert attribute | Articles | web.dev
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
The inert attribute | Articles | web.dev
<div> <label for="button1">Button 1</label> <button id="button1">I am not inert</button> </div> <... <div> <label for="button1">Button 1</label> <button id="button1">I am not inert</button> </div> <div inert> <label for="button2">Button 2</label> <button id="button2">I am inert</button> </div> Here, inert has been declared on the second <div> element containing button2, so all content contained within this <div>, including the button and label, cannot receive focus or be clicked. The inert attrib

