#css

rgb를 이용하는 방법

제일 뒷자리가 투명도를 조절하는 부분이다.

1
rgba(0, 0, 0, 0.5)

hexo code를 이용하는 방식

숫자 앞에 투명도를 붙여준다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
for 50% white you'd use #80FFFFFF.

100% — FF
95% — F2
90% — E6
85% — D9
80% — CC
75% — BF
70% — B3
65% — A6
60% — 99
55% — 8C
50% — 80
45% — 73
40% — 66
35% — 59
30% — 4D
25% — 40
20% — 33
15% — 26
10% — 1A
5% — 0D
0% — 00

transition을 활용한 사이즈 애니메이션

1
2
transition: height 2s;
-webkit-transition: height 2s;

선택자

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// 아이디 선택자
#id_of_the_element{
//contents
}

//클래스 선택자
.class_of_the_element{
//contents
}

// 속성 선택자
input[type=text]{
// contents
}

// 자손 선택자
header>h1{

}

// 반응, 상태, 구조 선택자
div:first-child{

}

선택자:active{

}

배경 설정하기

배경을 전체로 설정하고 가운데를 보이게 할 수 있다.
가장 일반적인 배경 설정이다.

1
2
3
background-position: center;
background-repeat: no-repeat;
background-size: cover;

배경 그라디언트

1
2
3
4
5
6
7
#grad {
background: red; /* For browsers that do not support gradients */
background: -webkit-linear-gradient(left top, red, yellow); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(bottom right, red, yellow); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(bottom right, red, yellow); /* For Firefox 3.6 to 15 */
background: linear-gradient(to bottom right, red, yellow); /* Standard syntax */
}

커서 모양 만들기

1
li { cursor: pointer; cursor: hand; }
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×