Architect's Log

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

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

CSS 子孫セレクタ(その2)

CSS

子孫セレクタを他のセレクタと組み合わせることができます。 使用例 <html lang="ja"> <head> <title>Hello! CSS</title> <meta charset="UTF-8"> <style> /* notificationクラスを指定されたp要素の子孫のstrong要素 */ p.notification strong { color: red; } </style> </head> <body> <p>段落1の<strong>強調語句</strong>です。</p> <p class="notification">通知文の<…</p></body></html>