헤더, 풋터 제거

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"  isELIgnored="false"
 %>
 <%@ taglib uri="<http://tiles.apache.org/tags-tiles>" prefix="tiles" %>    
<%@ taglib prefix="c" uri="<http://java.sun.com/jsp/jstl/core>"%>
 
<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <style>
    
#container {
    width: 100%;
    margin: 0 auto; /* auto로 중앙 정렬 */
    text-align: center;
    border: 0 solid #bcbcbc;
    position: relative; /* 자식 요소의 절대 위치를 위한 기준 설정 */
}

#content {
	flex: 3; /* 영역이 설정 */
	padding: 20px;
	/* background-color: #F5F5F5; */
	min-width : 986px;
	max-width : 986px;
	margin-left: auto;
	margin-right: auto;
}  
    </style>
    <title><tiles:insertAttribute name="title" /></title>
  </head>
    <body>
    <div id="container">
      <div id="content">
          <tiles:insertAttribute name="body"/>
      </div>
    </div>
  </body>
</html>

image.png