관리 메뉴

moozi

css submenu 본문

TIS_2018/응용sw2018_1기

css submenu

moozi 2018. 3. 27. 10:03

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <title>navigation</title>

    <style>

        *{margin: 0;padding: 0;}

        ul,ol{list-style-type: none; /* 기호없애기 */ }

        #gnb{              

            position: fixed;

            top: 0;

          

        }

        #gnb>li{ 

            float: left;/* 아이템 가로로 배치 */

        }

        #gnb>li>a{ 

            color: white; 

            background-color: darkred;

            display: inline-block;

            width:150px;

            text-align: center;

            padding: 10px; /* 글자와 테두리 사이 간격 */

        }

        #gnb a:link{ text-decoration: none;}

        

        #sub1{

            display: none;            

        }

        #sub1>li>a{ 

            color: white; 

            background-color: green;

            display: inline-block;

            width:150px;

            text-align: center;

            padding: 10px; /* 글자와 테두리 사이 간격 */

        }

       

        #subject:hover #sub1{

            display: block;

        }

        #sub1 a:hover{

            background-color: darkgreen;

        }

    </style>

</head>

<body>

    <ul id="gnb">

        <li><a href="#">회사소개</a></li>

        <li id="subject"><a href="#">과정소개</a>

            <ul id="sub1">

                <li><a href="#">Java</a></li>

                <li><a href="#">Android</a></li>

                <li><a href="#">Network</a></li>  

            </ul>

        </li>

        <li><a href="#">Contact</a></li>

        <li><a href="#">Board</a></li>  

    </ul>

     <h1 style="margin-top: 50px;">TIS 정보기술 교육센터</h1>

        

</body>

</html>

'TIS_2018 > 응용sw2018_1기' 카테고리의 다른 글

3/28 jQueryMobile  (0) 2018.03.28
html연습문제06  (0) 2018.03.27
css selector  (0) 2018.03.27
html연습문제05  (0) 2018.03.26
html연습문제04  (0) 2018.03.23
Comments