| Previous | Home | Next |
Following example will show how to make right layout frame in CSS:
<html>
<head>
<title>CSS Right Frame Layout</title>
<style type="text/css">
body{
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
height: 100%;
max-height: 100%;
}
#framecontent{
position: absolute;
top: 0;
bottom: 0;
right: 0;
width: 200px;
height: 100%;
overflow: hidden;
background: Green;
color: white;
}
#maincontent{
position: fixed;
top: 0;
left: 0;
right: 200px;
bottom: 0;
overflow: auto;
background: #fff;
}
.innertube{
margin: 15px;
}
* html body{
padding: 0 200px 0 0;
}
* html #maincontent{
height: 100%;
width: 100%;
}
</style>
</head>
<body>
<div id="framecontent">
<div class="innertube">
<h1>CSS Right Frame Layout</h1>
<h3>Sample text here</h3>
</div>
</div>
<div id="maincontent">
<div class="innertube">
<p><script type="textscript"
>filltext(255)</script></p>
<p style="text-align: center"
>Credits: <a href="http://www.r4r.co.in"
>R4R CSS Tutorials</a></p>
</div>
</div>
</body>
</html>
output
| Previous | Home | Next |