컨텐츠 요소를 가운데 정렬하는 방법 인라인 구조를 가운데 정렬하는 방법(text-align: center) 블록 요소를 가운데 정렬하는 방법(margin: 0 auto) 테이블을 이용한 가운데 정렬하는 방법(vertical-align: middle) 포지션을 이용한 가운데 정렬하는 방법(margin) 포지션을 이용한 가운데 정렬하는 방법(translate) 포지션을 이용한 가운데 정렬하는 방법(margin:auto) 플랙스를 이용한 가운데 정렬하는 방법(display:flex) 인라인 구조를 가운데 정렬하는 방법(text-align: center) See the Pen Center Type1 by 김지호 (@jiho1010) on CodePen. 블록 요소를 가운데 정렬하는 방법(margin: 0 aut..
Animation animation: {name} {duration} {timing-fuction} {delay} {iteration} {direction} {fill-mode} {play-state} Property Description animation-name @keyframe에 지정된 이름을 설정합니다. animation-duration 애니메이션이 실행되는 시간을 설정합니다. animation-timing-function 애니메이션이 키프레임 움직임을 설정합니다. animation-iteration 애니메이션이 반복 횟수를 설정합니다. animation-direction 애니메이션이 방향를 설정합니다. animation-fill-mode 애니메이션이 시작되기 전이나 끝나고 어떤 값을 적용할 지 ..
TRANSFORM Transform 변환은 엘리먼트의 좌표를 조작하여 위치나 크기, 회적 각도 등을 변경하는 기법입니다. 변환함수는 이동(translate), 확대(scale), 회전(rotate), 기울이기(skew) 등의 주용 4가지 함수와 행렬변환, 원근변환이 있습니다. 이동(translate) 확대(scale) 회전(rotate) 기울이기(skew) 2d변환 translate(x,y) scale(x,y) rotate(angle) skew(x-angle,y-angle) 3d변환 translate3d(x,y,z) scale3d(x,y,z) rotate3d(ax,y,z,angle) x축 변환 translateX(x) scaleX(x) rotateX(angle) skewX(angle) y축 변환 tran..
Background-blend-mode normal | multiply | screen | overlay | darken | lighten | color-dodge | saturation | color | luminosity Porperty Description normal 배경색의 기본 값을 정의합니다. multiply 더 어두운 색으로 변경됩니다. screen 더 밝은 색으로 변경됩니다. overlay 원래 색상의 농도와 밝기를 변경합니다. darken 어두운 색으로 변경됩니다. lighten 밝은 색으로 변경됩니다. color-dodge 기본 색상을 밝게 합니다. saturation 채도의 변화로 색상이 변경됩니다. color 색을 통해 색상을 변경합니다. luminosity 밝기를/ 통해 색상을 ..
Background Property Sample Description background background: #000 url(background.gif) no-repeat top center 배경 속성 단축형 background-image background-image: url(이미지 경로) 배경 이미지 설정 background-repeat background-repeat: no-repeat 배경 반복 여부 설정 background-attachment background-attachment : fixed 배경 고정 여부 설정 background-color background-color: #fff 배경 속성 단축형 background-position background-position: top 배경 이미..
Border-Radius border01 border02 border03 border04 border05 border06 border07 border08 border09 border10 .border01 {border-radius: 0;} .border02 {border-radius: 5px;} .border03 {border-radius: 10px;} .border04 {border-radius: 15px;} .border05 {border-radius: 20px;} .border06 {border-radius: 25px;} .border07 {border-radius: 30px;} .border08 {border-radius: 35px;} .border09 {border-radius: 50px;} ...
Box-Shadow box-shadow : [h-shadow] [v-shadow] [blur] [spread] [color] [inset] / none; Property Description h-shadow 그림자의 수평(X)축 거리를 나타냅니다. v-shadow 그림자의 수직(Y)축 거리를 나타냅니다. blur 그림자의 흐림정도를 나타냅니다. spread 그림자의 거리를 나타냅니다. color 그림자의 색을 나타냅니다. inset 그림자의 효과를 내부로 나타냅니다. bow-shadow shadow01 shadow02 shadow03 shadow04 shadow05 shadow06 shadow07 shadow08 shadow09 shadow10 .shadow01 {box-shadow: 0px 0px 5p..