==================================================================================================<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>div</title>
<style type="text/css">
.top{
height:100px;
background-color:black;
}
.center{
height:550px;
background-color:chartreuse;
}
.foot{
height:80px;
background-color:aqua;
}
.reg{
width:300px;
height:400px;
background-color:red;
position:relative;
left:780px;
top:10px;
}
</style>
</head>
<body>
<div class="top"></div>
<div class="center">
<div class="reg"></div>
</div>
<div class="foot"></div>
</body>
</html>
==============================================================================================
================================================================================================