728x90
< link & import >
웹페이지 만들다 보면
여러 개의 웹페이지가 생기는데
여러 개의 웹페이지가 공통적으로
동일한 css를 갖게 되는 경우가 있는데
그걸 해결하기위한 방법
2개의 페이지와
(2개의 html)
1개의 동일 css
설정
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<h1>page1</h1>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<h1>page2</h1>
</body>
</html>
h1 {
color: red;
}
링크의 중복 해결방법
link 사용 외의
다른 사용 방법
@import
728x90
'> 프로그래밍 언어 > CSS' 카테고리의 다른 글
웹 폰트 사이즈 단위 5가지는 알고가자! (px, rem, em, vw, vh) (1) | 2024.04.18 |
---|---|
[생활코딩] CSS 수업 정리 (17) (0) | 2023.07.24 |
[생활코딩] CSS 수업 정리 (15) (0) | 2023.07.24 |
[생활코딩] CSS 수업 정리 (14) (0) | 2023.07.23 |
[생활코딩] CSS 수업 정리 (13) (0) | 2023.07.23 |