CSS div 영역나누기

JAVA/CSS 2015. 8. 24. 13:18

<!DOCTYPE html>

<html>

<head>

<meta charset="EUC-KR">

<title>Insert title here</title>

</head>

<body>

<style>

div{

border: solid;

}

#wrap { position: absolute; top: 10px; left: 50%; margin-left: -512px; width:1024px; }

#TOP { position: absolute; top: 10px; left: 5px; width: 1024px; height: 80px; align: center; background: #EAEAEA; }

#ML1 { position: absolute; top: 95px; left: 5px; width: 300px; height: 600px; align: center; background: #EAEAEA; }

#ML2 { position: absolute; top: 95px; left: 310px; width: 719px; height: 600px; align: center; background: #EAEAEA; }

#DOWN { position: absolute; top: 700px; left: 5px; width: 1024px; height: 50px; align: center; background: #EAEAEA; }

</style>

</head>

<body>

 <div id="wrap">

 <div id="TOP">TOP</div>

 <div id="ML1"><jsp:include page="/member/Login.jsp"></jsp:include></div>

 <div id="ML2">

  

 </div>

 <div id="DOWN">DOWN</div>

 </div>


</body>

</body>

</html>

'JAVA > CSS' 카테고리의 다른 글

CSS 텍스트 윤곽선 아웃라인 그림자효과  (0) 2015.08.20
CSS Div안에 Div 수평 수직 가운데정렬  (0) 2015.08.05
css 스타일 필터효과  (0) 2014.09.26
css 기타 스타일 (커서,스크롤바)  (0) 2014.09.26
css 속성  (0) 2014.09.24
블로그 이미지

왕왕왕왕

,