css 스타일 지정방식 3가지

오세훈·2023년 7월 12일
0

css

목록 보기
1/2

스타일 지정방식 3가지



인라인 스타일 지정방식

<span style="color: red;"> 하나</span>
<span style="color: green;"></span>
<span style="color: blue;"></span>
테스트 하나


내부 스타일 지정방식

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>테스트</title>
  <style>
  	#one { color: red;}
    #three { color: blue;}
    .spa { color: green;}
  </style>
</head>
<body>
  <span id="one"> 하나</span>
  <span class="spa"></span>
  <span id="three" class="spa"></span>;
</body>
</html>
테스트 하나 ;

우선순위가 id, class, tag 순으로 id가 가장 높아서 three가 green이 아닌 blue로 출력



외부 스타일 지정방식

test.css 파일 내용

#one { color: red;}
#three { color: blue;}
.spa { color: green;}
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>테스트</title>
  	<link rel="stylesheet" href="test.css">
</head>
<body>
  <span id="one"> 하나</span>
  <span class="spa"></span>
  <span id="three" class="spa"></span>;
</body>
</html>
profile
자바 풀 스택 주니어 개발자

0개의 댓글