Architect's Log

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

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

CSS 特殊な属性セレクタ

CSS

[attribute|="value"]という構文で、attribute属性の値がvalueで始まる要素にスタイルを適用させることができます。 使用例 <html lang="ja"> <head> <title>Hello! CSS</title> <meta charset="UTF-8"> <style> [class|="en"] { /* enで始まるclassが指定された要素 */ color: red; } </style> </head> <body> <p class="en">This is an English sentence.</p> …</body></html>