박스위치 선정 - section, fixed

imjingu·2023년 7월 6일
0

개발공부

목록 보기
61/481
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }

        section {
            width: 100%; /* vw : 화면에 보이는 넓이의 영역에 따라 꽉차게 보여줌, 단점으로는 스크롤바가 생김 */
            height: 100vh; /* vh : 화면에 보이는 높이의 영역에 따라 꽉차게 보여줌, 고정된 값이 아님 */
        }

        section article {
            position: fixed; width: 200px; height: 200px;
            background-color: #000; bottom: 50px; right: 50px;
        }

        section:nth-of-type(1) { background-color: orange; }
        section:nth-of-type(2) { background-color: lightblue; }
        section:nth-of-type(3) {background-color: pink;}
    </style>
</head>
<body>
    <!--
        postion 요소를 자유롭게 배치하기
        fixed : 웹 브라우저를 기준으로 절대 위치를 지정
    -->
    <!-- fixed로 특정 요소 위치를 고정하기-->
    <section>
        <article></article>
    </section>

    <section>

    </section>

    <section>

    </section>
</body>
</html>

0개의 댓글