Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.97 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4.   <meta charset="UTF-8">
  5.   <title>My_code</title>
  6.   <link rel="stylesheet" type="text/css" href="style.css">
  7. <style>
  8. * {
  9.   margin: 0;
  10.   position: 0;
  11. }
  12.  
  13. .wrapper {
  14.   padding: 50px;
  15. }
  16.  
  17. .link {
  18.  display: block;
  19.  padding: 12px 24px;
  20.  text-decoration: none;
  21.  background: darkorange;
  22.  width: 100px;
  23.  color: white;
  24. }
  25.  
  26. .link:hover {
  27.   background: red;
  28.   cursor: pointer;
  29. }
  30.  
  31. .lonk:hover > .list:hover {
  32.   display: block;
  33. }
  34.  
  35.  
  36. .list {
  37.   list-style: none;
  38.   display: none;  
  39.  
  40. }
  41.  
  42. .item {
  43.   display: block;
  44.   padding: 12px 24px;
  45.   width: 100px;
  46.   background: darkorange;  
  47.   color: white;    
  48. }
  49.  
  50. .item:hover {
  51.   cursor: pointer;
  52.   background: red;
  53. }
  54.  
  55.  
  56.    
  57. </style>
  58. </head>
  59. <body>
  60.  
  61.  
  62. <div class="wrapper">
  63.   <a class="link" href="#">Показать</a>
  64.   <ul class="list">
  65.     <li class="item">First</li>
  66.     <li class="item">Second</li>
  67.     <li class="item">Third</li>
  68.   </ul>
  69. </div>
  70.  
  71.  
  72. </body>
  73. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement