css기본문법

Posted by negabaro on Friday, May 18, 2018 Tags: css   1 minute read

규칙

확장자는 반드시 .css여야함 프로퍼티 정의후에는 세미콜론 꼭붙일것

property와 selector

css에는 property와 selector가 있음

property란

property-name: value;

selector란

h1 {
    
}
h1 {
}

ID를 지정하는 방법

#name {
}

class를 지정하는 방법

.name {
}
h1 .name {
}

참고한사이트

https://academy.nomadcoders.co/courses/193412/lectures/3088214#/questions/1

id와class의 차이

id은 페이지 내에서 primary하다. 같은 이름으로 복수의id를 만들수 없음 거기에 반해class는 복수명이 지정가능하다.

html과css연결 하는법

이하 2가지 방법이 있음.

1. inline한 방법
2. external한 방법

inline한 방법 예)

<head>
<style>
body{
 background-color: red;
 
    }
}
</style>
</head>

external한 방법 예)

<link href="xx.css" rel="stylesheet">