"Basic to Brilliance" 강좌 열한 번째 강의에 오신 것을 환영합니다. 이번 강의에서는 CSS 포지셔닝의 다양한 유형인 상대, 절대, 고정, 고정. 위치 지정을 이해하면 페이지에서 요소가 나타나는 위치와 사용자가 콘텐츠와 상호 작용할 때 요소가 어떻게 작동하는지 제어할 수 있습니다.
.box { position: relative; top: 20px; /* Moves the box 20px down from its normal position */ left: 30px; /* Moves the box 30px to the right */ }
.container { position: relative; /* This container is the reference for the absolute positioning */ width: 300px; height: 200px; background-color: #f4f4f4; } .box { position: absolute; top: 50px; right: 20px; background-color: #333; color: white; padding: 10px; }
.navbar { position: fixed; top: 0; left: 0; width: 100%; background-color: #333; color: white; padding: 15px; text-align: center; }
.header { position: sticky; top: 0; background-color: #333; color: white; padding: 10px; }
.box1 { position: absolute; top: 50px; left: 50px; z-index: 1; /* Lower z-index */ background-color: #f4f4f4; padding: 20px; } .box2 { position: absolute; top: 80px; left: 80px; z-index: 2; /* Higher z-index */ background-color: #333; color: white; padding: 20px; }
.sidebar { position: fixed; top: 0; left: 0; width: 200px; height: 100vh; background-color: #333; color: white; padding: 20px; } .content { position: relative; margin-left: 220px; /* Account for the fixed sidebar */ padding: 20px; }
다음: 다음 강의에서는 CSS 변환 및 애니메이션에 대해 자세히 알아보고 웹 요소에 쉽게 애니메이션을 적용하는 방법을 배우겠습니다. 역동적이고 상호작용적인 디자인을 만들 준비를 하세요!
LinkedIn에서 나를 팔로우하세요
리도이 하산
위 내용은 CSS 위치 지정 – 절대, 상대, 고정 및 고정.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!