1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Navbar using flexbox, automatic right margin on first item</title>
- <script src="js/html5shiv.min.js"></script>
- <style>
- nav {
- display: block;
- }
- .navbar ul {
- display: -webkit-flex;
- display: -ms-flexbox;
- display: -webkit-box;
- display: -moz-box;
- display: flex;
- font-family: 'Avenir Next', Avenir, Corbel, 'Franklin Gothic', 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
- list-style: none;
- padding: 0;
- background-color: #486a8e;
- }
- .navbar li {
- text-transform: uppercase;
- text-align: center;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- background-color: #12459e;
- outline: 1px solid #fff;
- }
- .navbar li:first-child {
- margin-right: auto;
- }
- .navbar li a {
- display: block;
- text-decoration: none;
- line-height: 1.75em;
- padding: 1em;
- color: #fff;
- }
- </style>
- </head>
- <body>
- <nav class="navbar">
- <ul>
- <li><a href="/home">Home</a></li>
- <li><a href="/spaceships">Spaceships</a></li>
- <li><a href="/planets">Planets</a></li>
- <li><a href="/stars">Stars</a></li>
- </ul>
- </nav>
- </body>
- </html>
|