728x90
반응형
<!DOCTYPE html>
<html lang="ko">
<head>
<title>선택자 : 그룹</title>
<meta charset="UTF-8">
<style>
/*
그룹 선택자 : 서로 다른 두 개 이상의 선택자에게 동일한 CSS 속성을 적용하기 위해 사용.
'선택자 A', '선택자 B', '선택자 C', ... {
...
}
*/
a, b, strong, sup, sub {
color: red;
}
</style>
</head>
<body>
<a>I'm a.</a>
<a>I'm b.</a>
<strong>I'm strong.</strong>
<sup>I'm sup.</sup>
<sub>I'm sub.</sub>
</body>
</html>
728x90
반응형