● Position property: A way to adjust the position of an element, understand how it is used with values such as static, relative, absolute, fixed, etc. and how it affects layout. 1) static: static 값은 요소를 일반적인 문서 흐름에 따라 배치합니다. 즉, 위치를 별도로 지정하지 않고 요소를 기본 위치에 배치합니다. 이는 Position 속성의 기본값입니다. .container { position: static; } 위의 예제 코드에서는 "container"라는 클래스를 가진 요소를 static 위치로 배치하고 있습니다. 2) relative: rela..