Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>JS Bin</title>
  7. <style id="jsbin-css">
  8. body,html {
  9. margin: 0;
  10. font-family: sans-serif;
  11. }
  12.  
  13. ul {
  14. padding: 0;
  15. width: 100%;
  16. }
  17.  
  18. li {
  19. display: inline;
  20. }
  21.  
  22. a {
  23. outline: none;
  24. text-decoration: none;
  25. display: inline-block;
  26. width: 19.5%;
  27. margin-right: 0.625%;
  28. text-align: center;
  29. line-height: 3;
  30. color: black;
  31. }
  32.  
  33. li:last-child a {
  34. margin-right: 0;
  35. }
  36.  
  37. a:link, a:visited, a:focus {
  38. background: yellow;
  39. }
  40.  
  41. a:hover {
  42. background: orange;
  43. }
  44.  
  45. a:active {
  46. background: red;
  47. color: white;
  48. }
  49. </style>
  50. </head>
  51. <body>
  52. <ul>
  53. <li><a href="#">Home</a></li><li><a href="#">Pizza</a></li><li><a href="#">Music</a></li><li><a href="#">Wombats</a></li><li><a href="#">Finland</a></li>
  54. </ul>
  55.  
  56.  
  57. <script id="jsbin-source-css" type="text/css">body,html {
  58. margin: 0;
  59. font-family: sans-serif;
  60. }
  61.  
  62. ul {
  63. padding: 0;
  64. width: 100%;
  65. }
  66.  
  67. li {
  68. display: inline;
  69. }
  70.  
  71. a {
  72. outline: none;
  73. text-decoration: none;
  74. display: inline-block;
  75. width: 19.5%;
  76. margin-right: 0.625%;
  77. text-align: center;
  78. line-height: 3;
  79. color: black;
  80. }
  81.  
  82. li:last-child a {
  83. margin-right: 0;
  84. }
  85.  
  86. a:link, a:visited, a:focus {
  87. background: yellow;
  88. }
  89.  
  90. a:hover {
  91. background: orange;
  92. }
  93.  
  94. a:active {
  95. background: red;
  96. color: white;
  97. }</script>
  98. </body>
  99. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement