asimryu

css dropbox 예제,미완성(20150827)

Aug 26th, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.20 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="ko">
  3. <head>
  4. <meta charset="UTF-8">
  5. <style>
  6.     body { background: #E3CAA1; }
  7.     header nav ul {
  8.         list-style: none;
  9.         margin: 0;
  10.         padding: 0;
  11.     }
  12.     header > nav > ul > li {
  13.         float: left;
  14.         width: auto;
  15.         height: 50px;
  16.         padding: 0 30px;
  17.         font-size: 1.5em;
  18.         background-color: white;
  19.         font-weight: bold;
  20.         line-height: 50px;
  21.     }
  22.     header > nav > ul > li > ul > li {
  23.         height: 50px;
  24.         font-size: 1.0em;
  25.         background-color: gray;
  26.         color: white;
  27.         font-weight: bold;
  28.         line-height: 50px;     
  29.     }
  30.     header > nav > ul > li > ul {
  31.         display: none;
  32.     }
  33.     header > nav > ul > li:hover {
  34.         background-color: gray;
  35.         color: white;
  36.         cursor: pointer;
  37.     }
  38.     header > nav > ul > li:hover ul {
  39.         display: block;
  40.     }
  41.     header > nav > ul > li > ul > li:hover {
  42.         background-color: #999;
  43.         cursor: pointer;
  44.     }
  45. </style>
  46. <title>css 드롭다운 메뉴</title>
  47. </head>
  48. <body>
  49.     <header>
  50.         <nav>
  51.             <ul>
  52.                 <li></li>
  53.                 <li>인사말씀</li>
  54.                 <li>포트폴리오
  55.                     <ul>
  56.                         <li>웹디자인</li>
  57.                         <li>웹개발</li>
  58.                         <li>수상내역</li>
  59.                     </ul>
  60.                 </li>
  61.                 <li>블로그</li>
  62.                 <li>연락처</li>
  63.             </ul>
  64.         </nav>
  65.     </header>
  66. </body>
  67. </html>
Advertisement
Add Comment
Please, Sign In to add comment