WEB/html,CSS 71

[html][css] flex items속성/order/ flex/flex-grow/flex-shrink/flex-basis/align-self

order: flex item의 순서를 지정 flex: flew-grow, flex-shrink, flex-basis의 단축속성 flex-grow: flex item의 증가 너비 비율을 설정 flex-shrink: flex item의 감소 너비 비율을 설정 flex-basis: flex item의 (공간 배분 전) 기본 너비 설정 align-self: 교차 축에서 item의 정렬 방법을 설정 order item의 순서를 설정합니다. item에 숫자를 지정하고 숫자가 클수록 순서가 밀린다. 음수가 허용된다. html구조와 상관없이 순서를 변경할 수 있어서 유용하다. 기본값은 0 1 2 3 4 5 6 .container{ border: 4px solid; display: flex; } .container ...

WEB/html,CSS 2021.04.19

[html][css] 글자 가운데 정렬 하는법/ flex/

2021.04.18 - [분류 전체보기] - [html][css] flex container 속성/ justify-content 주축의 정렬 방법/ align-content교차 축의 정렬 방법/align-items [html][css] flex container 속성/ justify-content 주축의 정렬 방법/ align-content교차 축의 정렬 방법/align-item 2021.04.18 - [WEB/html,CSS] - [html][css] flex container 속성 / display : flex, inline-flex/ flex-flow 주축을 설정 /flex-wrap 줄바꿈 속성 [html][css] flex container 속성 / display : flex, inline-fle..

WEB/html,CSS 2021.04.18

[html][css] flex container 속성 / display : flex, inline-flex/ flex-flow 주축을 설정 /flex-wrap 줄바꿈 속성

flex container 속성 display - flex - inline-flex .container{ border: 2px solid red; display:inline-flex; } .container .item{ width:100px; height: 100px; border: 2px solid; } .container{ border: 2px solid red; display:flex; } .container .item{ width:100px; height: 100px; border: 2px solid; } flex-flow 주 축을 설정하고 items의 여러 줄 묶음도 설정한다. flex-direction : items의 주축을 설정 - row: 수평축 - row-reverse: 오른쪽-> 왼쪽 ..

WEB/html,CSS 2021.04.18

[html][css] 다단 columns

columns 다단을 정의 column-width :단의 최적 너비를 설정 column-count : 단의 개수를 설정 더보기 What is Lorem Ipsum? Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap i..

WEB/html,CSS 2021.04.18

[html][css] animation효과 주기/ @keyframes , animation-name, animation-duration, animation-delay, animation-iteration-count, animation-direction, animation-fill-mode, animation-play-state

animation: 애니메이션이름 지속시간 [타이밍함수 대기시간 반복횟수 반복방향 전후상태 재생/정지]; .box{ width:100px; height: 100px; background: black; } .box:hover{ animation: first-animation 2s infinite alternate; } @keyframes first-animation{ 0%{ width: 100px; } 100%{ width: 500px; } } @keyframes 2개 이상의 애니메이션 중간 상태(프레임)을 지정 .box{ width:100px; height: 100px; background: black; } .box:hover{ animation: my-animation 1s infinite altern..

WEB/html,CSS 2021.04.18

[html][css] transform 변환 속성/transform-origin, style, perspective, perspective-origin, backface-visibility

transform-origin : 요소의 변환의 기준점을 설정 transform-style: 3D 변환 요소의 자식 요소도 3D변환을 사용할 지 설정 perspective: 하위 요소를 관찰하는 원근 거리를 설정 perspective-origin: 원근 거리의 기준점을 설정 backface-visibility: 3D변환으로 회전된 요소의 뒷면 숨김을 설정 transform-origin img{ margin: 100px; transition: 1s; transform: rotate(45deg); transform-origin: 0% 0%; } transform-origin: 기준점인데 원래 기본값은 50% 50% 0 이다 ( x 축 y축 z축) 그 기준점은 요소의 정 중앙이다. 그런데 0 0 0 으로 바꾸..

WEB/html,CSS 2021.04.18

[html][css] transform 2D속성 / 이동, 크기 변환, 회전, 기울기

transform 요소의 변환 효과 (변형)을 지정 transform 속성은 하나고 여러가지 값을 적을 수 있음 여러 함수들이 존재한다. 2D속성 translate : 이동 - translate(x, y) - translate(x) - translate(y) scale : 크기 - scale(x, y) - scale(x) - scale(y) rotate(degree) : 회전 skew : 기울기 - skew(x-deg, y-deg) - skew(x-deg) - skew(y-deg) martrix(n,n,n,n,n,n) : 모두 아우르는 것 .box{ width:100px; height: 300px; background: gray; margin: 300px; transform: rotate(45deg) ;..

WEB/html,CSS 2021.04.18

[html][css] 애니메이션 transition속성 / transition-property, transition-duration,transition-timing-function

css속성의 시작과 끝을 지정(전환 효과)하여 중간 값을 애니메이션 .box{ width:100px; height: 300px; background: gray; margin: 30px; transition-property: width, background; transition-duration: 1s; } .box:hover{ width:300px; background: dodgerblue; } transition은 변하기 전 요소에 적어주면 된다. transition: width 1s, background 1s; 이렇게 단축 속성으로 적을 수 있다. transition-property 전환 효과를 사용할 속성 이름을 설정 transition: all 1s; transition: 1s; 둘다 같은 뜻이다...

WEB/html,CSS 2021.04.18