CSS-STICKY

임재헌·2023년 3월 24일

CSS

목록 보기
12/23
<!DOCTYPE html>   
<html lang="ko"> 
<head>
       <title> 12.sticky </title>
       <link rel="stylesheet" href="reset.css">
       <style>
        #s1 ul{background-color: brown;  }
        #s1 li:nth-child(1){background-color: red;}
        #s1 li:nth-child(2){background-color: green; }
        #s1 li:nth-child(3){background-color: blue;}

         
        /* position: fixed주면 다음 요소를 덮어버림 */
       /*
        #header{
            position: fixed;
            height:  70px;
            background-color: black;
            width: 100%;
            color: white;
            font-size: 20px;
            font-weight: bold;
            text-align: center;
        }
        */
        /* 2.완성코드 */
        #header{
            position: sticky;
            top: 0;/*sticky 줄때 필수사항*/
            height:  70px;
            background-color: black;
            width: 100%;
            color: white;
            font-size: 20px;
            font-weight: bold;
            text-align: center;
        }
       </style>
       
    </head>
    <body>

     <!-- 붙임 위치 position : sticky -->
     
    <header id="header">
    <h1>아이티윌</h1>  </header>
        <hr>
        <section id="s1">
            <h1>position: sticky</h1>
            <ul>
                <li>서울</li>
                <li>부산</li>
                <li>제주</li>
            </ul>
        </section>

        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
        <p> KOREA</p>
    </body>
</html>

0개의 댓글