エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント1件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
A new experimental feature - scoped stylesheets | Blog | Chrome for Developers
<html> <body> <div>a div! <span>a span!</span></div> <div> <style scoped> div { color: red; } spa... <html> <body> <div>a div! <span>a span!</span></div> <div> <style scoped> div { color: red; } span { color: green; } </style> a div! <span>a span!</span></div> <div>a div! <span>a span!</span></div> </body> </html> then it restricts the style rules so that they’re applied to the enclosing <div> that is the parent of the <style scoped> element and anything inside just that <div>. We call this ‘scop
2012/03/07 リンク