이거엔 몇가지 방법이 있다
예전엔 스크립트를 많이 썼었는데...
css만으로도 됨!
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
<style>
.layer {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
width: 150px;
height: 150px;
margin: auto;
background:red;
}
</style>
</head>
<body>
<div class="layer">
</div>
</body>
</html>