Guest User

Untitled

a guest
Jan 15th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. #navigation_bar {
  2. overflow: hidden;
  3. list-style-type: none;
  4. width: 100%;
  5. }
  6. #navigation_bar li {
  7. text-align: center;
  8. float: left;
  9. width: 33%;
  10. border-style: solid;
  11. border-width: 1px;
  12. border-color: black;
  13. }
  14.  
  15. <ul id="navigation_bar">
  16. <li>Projection</li>
  17. <li>Real-Time</li>
  18. <li>Cleanup</li>
  19. </ul>
  20.  
  21. <ul id="navigation_bar">
  22. <li class="first">Projection</li>
  23. <li>Real-Time</li>
  24. <li>Cleanup</li>
  25. </ul>
  26.  
  27. #navigation_bar {
  28. overflow: hidden;
  29. list-style-type: none;
  30. width: 100%;
  31. }
  32. #navigation_bar li {
  33. text-align: center;
  34. float: left;
  35. width: 32%;
  36. border-style: solid;
  37. border-width: 1px;
  38. border-color: black;
  39. border-left:none;
  40. }
  41. #navigation_bar li.first {
  42. border-left:solid 1px black;
  43. }
  44.  
  45. #navigation_bar li {
  46. border: 1px solid black;
  47. border-left-width: 0;
  48. }
  49.  
  50. #navigation_bar li:first-child {
  51. border-left-width: 1px;
  52. }
  53.  
  54. margin-right: -1px;
  55.  
  56. #navigation_bar {
  57.         overflow: hidden;
  58.         list-style-type: none;
  59.         width: 100%;
  60.     }
  61. #navigation_bar li {
  62.         text-align: center;
  63.       display: inline-block;
  64.         width: 30%; /* Slightly smaller width to fix the borders */
  65.         border-style: solid;
  66.         border-width: 1px;
  67.         border-color: black;
  68.     }
Add Comment
Please, Sign In to add comment