1-2 | CSS 기초

devheyrin·2022년 1월 3일
0

frontend

목록 보기
2/9

HTML 에 CSS 파일 연결하기

헤더에 <link> 태그로 CSS파일을 연결한다.

<head>
    <title>Hello World</title>
    <link rel="stylesheet" type="text/css" href="style.css">
</head>

CSS Selector

  • Element
li { } 
table { }
body { }
  • Class
.title { }
.content { } 
  • ID
#name { }
#email { }
#password { }
  • All
* { }
  • Descentant(상속)
nav li { } 
/* nav태그 안의 li */
  • Adjacent
h4 + ul { } 
/* h4에 붙어있는 ul */
  • 속성
a[href = "https://naver.com"] { }
  • nth of type
div:nth-of-type(3) { }
/* 전체 html 에서 3번째 div태그 */
profile
개발자 헤이린 🔜 프로덕트 매니저로 나아가는 중!

0개의 댓글