relative + absolute layout
by evpozdniakov
HTML
<header>
<div class="logo"></div>
<form>
<input class="username-field" placeholder="Username" />
<input class="password-field" placeholder="Password" type="password" />
<button type="submit">Login</button>
</form>
</header>
CSS
body {
padding: 10px;
background-color: #333;
}
header {
position: relative;
margin: 0 auto;
min-width: 450px;
max-width: 700px;
height: 65px;
border: 2px solid #ccc;
background-color: #fff;
}
.logo {
position: absolute;
left: 10px;
top: 10px;
width: 150px;
height: 50px;
background: url('http://ppp.contentdef.com/assets/pornportal/img/pp6/logo.png') -850px -115px;
}
form {
position: absolute;
right: 20px;
top: 20px;
}
form input {
width: 80px;
font-size: 11px;
}
form button {
font-size: 11px;
}