123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Navbar using flexbox, no width</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;
- -webkit-box-flex: 1;
- -webkit-flex: 1 0 0%;
- -moz-box-flex: 1;
- -ms-flex: 1 0 0%;
- flex: 1 0 0%;
- }
- .navbar li a {
- display: block;
- text-decoration: none;
- line-height: 1.75em;
- padding: 1em;
- color: #fff;
- }
- .navbar li:first-child {
- -webkit-box-flex: 2;
- -webkit-flex-grow: 2;
- -moz-box-flex: 2;
- -ms-flex-positive: 2;
- flex-grow: 2;
- }
- .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>
|