Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

2012-09-01から1日間の記事一覧

CSS 属性値セレクタ

CSS

属性値セレクタを指定すると、指定された値に一致する属性をもつ要素にスタイルが適用されます。 使用例 <html lang="ja"> <head> <title>Hello! CSS</title> <meta charset="UTF-8"> <style> [class="notification"] { /* クラスnotificationが指定された要素 */ color: red; } </style> </head> <body> <p class="notification">第1段落です。</p> <p class="infomation">第2…</p></body></html>