19-06-2013, 23:47
takie?
Kod:
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title> ... </title>
<link rel="shortcut icon" href="/favicon.ico">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;">
</head>
<style>
html, body {
position: relative;
height: 100%;
margin:0;
}
.bg1 {
position:absolute;
top:0;
right:80%;
height:100%;
background: url(http://ns223506.ovh.net/rozne/eafc71c4a2043a56ffd3395e5a3654d5/wallpaper-2860833.jpg) top right no-repeat;
width:1000%;
}
.fixed-menu {
position:fixed;
top:0;
left:20%;
width:20%;
height:100%;
background-color: #fff;
color:#333;
padding:10px;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box;
font:11px sans-serif;
}
.bg2 {
position:absolute;
top:0;
left:40%;
height:100%;
width:1000%;
background: url(http://ns223506.ovh.net/rozne/9e6efdb7a7772684483b4928b7f7615a/wallpaper-2856212.jpg) top left no-repeat;
}
</style>
<body>
<div class="bg1"></div>
<div class="fixed-menu">Fixed Menu</div>
<div class="bg2"></div>
</body>
</html>