Сообщение от Igor2001
|
нужно чтоб при скроллинге содержимого ниже экрана был белый цвет который задан в body как бэкграунд
|
Лёгким движением руки брюки превращаются в оригинальные шорты... (с)
<!DOCTYPE html>
<html>
<head>
<!--
<script src="http://code.jquery.com/jquery-latest.js"></script>
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
* {
margin: 0;
padding: 0;
}
html,
body {
height: 100%;
width: 100%;
}
body {
background-color: #ffffff;
}
#fon {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #e0e0e0;
}
#content_tab {
/* тот самый отступ */
height: 20px;
}
#content {
position: relative;
margin-left: auto;
margin-right: auto;
width: 770px;
height: 700px;
background-color: #cccccc;
}
</style>
<script type="text/javascript">
</script>
</head>
<body>
<div id='fon'></div>
<div id='content_tab'></div>
<div id='content'></div>
</body>
</html>