Advertisement
Guest User

Md Sujan Hossain

a guest
Aug 22nd, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.01 KB | None | 0 0
  1. @charset "utf-8";
  2. /* CSS Document */
  3. *{
  4.     margin:0px;
  5.     padding:0px;
  6.     }
  7. .menu{width:100%;min-height:50px;margin-left:10px}
  8. .menu ul{
  9.         list-style:none;
  10.        
  11.         }
  12. .menu ul li{
  13.             background-image:url(images/rr.jpg);
  14.             margin:1px;
  15.             /*width:220px;*/
  16.             height:50px;
  17.             font-size:24px;
  18.             line-height:50px;
  19.             text-align:center;
  20.             float:left;
  21.             position:relative;
  22.             border-radius:8px;
  23.             }
  24. .menu ul li a{
  25.             text-decoration:none;
  26.             color:white;
  27.             display:block;
  28.             }
  29. .menu ul li a:hover{ background-image:url(images/colorhover.jpg);
  30.                 border-radius:8px;
  31.                 }
  32. .menu ul ul{
  33.         position:absolute;
  34.         display:none;
  35.         }  
  36. .menu ul li ul li{
  37.             width:280px;
  38.             }  
  39. .menu ul li:hover > ul{
  40.                 display:block;
  41.                 }
  42. .menu ul ul ul{
  43.             margin-left:280px;
  44.             top:0px;
  45.             }
  46.                        
  47. h2{width:850px; margin:10px 20px; font-size:24px;}
  48. #amination{
  49.         background-color:red; width:100px; height:80px; margin-top:400px; position:fixed;
  50.         }
  51.         .footer{background:blue;text-align:center;padding:5px;color:white;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement