.alert { /* alert 클래스를 선택 */
    padding: 0.5em;
    background-color: gold;
}
.caution { /* caution 클래스를 선택 */
    color: orangered;
}
<p class="alert">알릴 내용이 있습니다.</p>
<p>문단 요소입니다.</p>
<p class="alert caution">주의할 내용이 있습니다.</p>
<p>문단 요소입니다.</p>
실제 적용된 모습
.class_name {
    /* ... */
}
[class~="class_name"] {
    /* ... */
}
.class 선택자의 브라우저 호환성
선택자
데스크탑 Chrome
Chrome
데스크탑데스크탑 Edge
Edge
데스크탑 Firefox
Firefox
Safari
Safari
.class_name 1 12 1 1