Advertisement
Svetlana_Ovsjanikova

html_css

Sep 26th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. /* Style the tab buttons */
  2. .tablink {
  3. background-color: #555;
  4. color: white;
  5. float: left;
  6. border: none;
  7. outline: none;
  8. cursor: pointer;
  9. padding: 14px 16px;
  10. font-size: 17px;
  11. width: 25%;
  12. }
  13.  
  14. /* Change background color of buttons on hover */
  15. .tablink:hover {
  16. background-color: #777;
  17. }
  18.  
  19. /* Set default styles for tab content */
  20. .tabcontent {
  21. color: white;
  22. display: none;
  23. padding: 50px;
  24. text-align: center;
  25. }
  26.  
  27. /* Style each tab content individually */
  28. #London {background-color:red;}
  29. #Paris {background-color:green;}
  30. #Tokyo {background-color:blue;}
  31. #Oslo {background-color:orange;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement