css layout 정리 position inline inline-block block
참고:https://ko.learnlayout.com/position.html 1. position 속성 - relative, absolute, fixed position 프로퍼티에는 다양한 값을 설정할 수 있다. position: relative .relative1 { position: relative; } .relative2 { position: relative; top: -20px; left: 20px; background-color: white; width: 500px; } position: fixed 고정(fixed) 엘리먼트는 뷰포트(viewport)에 상대적으로 위치가 지정되는데, 이는 페이지가 스크롤되더라도 늘 같은 곳에 위치한다는 뜻이다. 주로 메인페이지 헤더부분에 많이 사용한다. .fi..
Coding/CSS
2021. 11. 2. 20:46