Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <header>
        <nav class="pages">
            <a href="#">Home</a>
        </nav>
        <nav class="signin">
            <a href="#">Signup</a>
            <a href="#">Signin</a>
        </nav>
    </header>
</body>
</html>
 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body {
    height: 100%;
    font: 100% Helvetica;
}
header { 
    max-width: 1000px;
    height: 80px;
    background:linear-gradient(#0FF,#4D70DB);
    display: table;
    width: 100%;
    margin: 0 auto;
}
header nav { 
    display: table-cell;
    text-align: left;
    vertical-align: bottom;
}
header .signin {
    text-align: right;
}
a {
    color: #000;
    text-decoration: none;
    display: inline-block;
    padding: 10px;
}
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
misterManSampro
0viewers