Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.56 KB | None | 0 0
  1. @media screen and (min-width: 768px) {
  2.   .nav li {
  3.     width: 130px;
  4.     border-bottom: none;
  5.     height: 50px;
  6.     line-height: 50px;
  7.     font-size: 1.4em;
  8.     display: inline-block;
  9.     margin-right: -4px;
  10.   }
  11.  
  12.   .nav a {
  13.     border-bottom: none;
  14.   }
  15.  
  16.   .nav > ul > li {
  17.     text-align: center;
  18.   }
  19.  
  20.   .nav > ul > li > a {
  21.     padding-left: 0;
  22.   }
  23.   /* tu sub menu */
  24.   .nav li ul {
  25.     position: absolute;
  26.     display: none;
  27.     width: inherit;
  28.   }
  29.  
  30.   .nav li:hover ul {
  31.     display: block;
  32.   }
  33.  
  34.   .nav li ul li {
  35.     display: block;
  36.   }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement