2. CSS

CSS Class(클래스) 적용하기

도피디 2024. 11. 18. 22:53
반응형

Class명은 유일할 필요가 없다.

그리고 여러 요소들을 같이 쓸 수 있고, 한 번에 여러 class가 쓰일 수 있다.

 
<!DOCTYPE html>
<html lang="kr">
<head>
<title>The Nick Times</title>
<style>
body {
margin: 20px;
}
span {
background-color: teal;
}
.tomato {
background-color: tomato;
}
</style>
</head>
<body>
<span>hello</span>
<span class="tomato"> hello</span>
<span>hello</span>
<span class="tomato">hello</span>
<span>hello</span>
<span class="tomato">hello</span>
<span>hello</span>
</body>
</html>

 

 

결과

칙칙폭폭 귀여운 기차같아

 

반응형