Architect's Log

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

CSS 複数のクラスセレクタ

クラスセレクタを1つにつなぐと、class属性に全てのクラス名が指定された要素が指定されます。

使用例

<!DOCTYPE html>
<html lang="ja">
<head>
<title>Hello! CSS</title>
<meta charset="UTF-8">
<style>
/* infomationクラスとnotificationクラスの両方が割り当てられた全ての要素 */
.infomation.notification {
    color:  red;
}
</style>
</head>
<body>
<p class="infomation notification">通知用の情報の段落です。</p>
<p class="infomation">情報の段落です。</p>
<p class="notification">通知用の段落です。</p>
</body>
</html>

レンダリング(Chrome)

関連エントリー

CSSエントリーのまとめ - プログラマーな日々
CSSに関するエントリーのまとめページです。 ...