<p style="color: red; front-size: 20px;">I'm learning to code!</p>
<head>
<title>Vacation World</title>
<style>
p
{font-family: Arial;
}
</style>
</head>
<link href="https://www.codecademy.com/stylesheets/style.css" type="text/css" rel="stylesheet">
<!--같은 위치에 파일이 존재할 때-->
<link href="./style.css" type="text/css" rel="stylesheet">
하나의 HTML 문서를 다양한 장치에서 서로 다르게 css를 설정할 수 있다.
<h1 class="hello">Heading 1 & class="hello"</h1>
<h2 class="hello">Heading 2</h2>
h1.hello {
;}
<h1 class="title uppercase">Top Vacation Spots</h1>
.uppercase{
text-transform: uppercase;
}
.title{;
}
<p id="bye">Paragrape id="bye"</p>
#bye
{color:Yellow;
}
Id는 중복 지정이 불가하다. Class는 중복지정이 가능하다.
HTML 문서 내의 모든 요소를 선택한다.
선택한 요소를 제외한 모든 요소를 선택한다.
{font-family: Arial;}
{font-size: 10px;}
{font-weight: bold;}
{font-weight: 200;}
{font-style: italic;}
left, center, right
{text-align: left;}
{color: #000000;}
{color: rgb(0,0,0;}
{color: 0,0%,0%}
{opacity: 0.75;}
{backgroud-image: url("");}
color를 최우선적으로 적용하는 방법
{color: #FFF !important;}
우선순위: 대상을 명확하게 특정할수록 높다. !important > Inline > id > class > tag > * > 상속된 속성