Advertisement
pacho_the_python

grid_nav_css

Feb 1st, 2023
730
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.60 KB | None | 0 0
  1. body {
  2.   margin: 0;
  3.   position: relative;
  4. }
  5.  
  6.  
  7. nav {
  8.   position: sticky;
  9.   background-color: #333;
  10.   color: #fff;
  11.   top: 0;
  12.   z-index: 1;
  13. }
  14.  
  15. ul{
  16.   display: grid;
  17.   grid-template-columns: 5% 5% 5% 45%;
  18. }
  19.  
  20. nav ul {
  21.   list-style: none;
  22.   padding: 0;
  23.   margin: 0;
  24.   justify-content: center;
  25. }
  26.  
  27. nav li {
  28.   text-align: center;
  29. }
  30.  
  31. nav li:last-child {
  32.   grid-column: 4;
  33.   justify-self: flex-end;
  34. }
  35.  
  36. nav a {
  37.   color: #fff;
  38.   text-decoration: none;
  39.   padding: 1em;
  40.   display: block;
  41. }
  42.  
  43. nav a:hover {
  44.   background-color: #444;
  45. }
  46.  
  47. section {
  48.   width: 300px;
  49.   margin: 50px;
  50. }
  51.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement