"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 变换和动画,您将在其中学习如何轻松为 Web 元素设置动画。准备好让您的设计充满活力和互动!
在 LinkedIn 上关注我
里多伊·哈桑
위 내용은 CSS 위치 지정 – 절대, 상대, 고정 및 고정.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!