Architect's Log

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

CSS クラスセレクタ

クラスセレクタは、class属性のクラス名で要素を指定します。

使用例

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

レンダリング(Chrome)

関連エントリー

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