Page Layout แบบ footer ติดอยู่ข้างล่างตลอด
ส่วนสำคัญคือการกำหนด CSS ครับ สามารถดูโค้ดทั้งหมดได้ที่ ตัวอย่าง เลยครับ
<style type="text/css">
html,body {
margin:0;
padding:0;
height:100%;
background-color:white;
font-size:8pt;
font-family:Tahoma, "MS Sans Serif";
color:black;
}
div#container {
position:relative;
margin:0 auto;
width:100%;
background:white;
background:url("../images/f_bkg.jpg");
height:auto !important;
height:100%;
min-height:100%;
}
div#header {
background:url("../images/logo_bkg.gif");
}
div#footer {
position:absolute;
width:100%;
bottom:0;
text-align:center;
background:url("../images/bottom.gif");
}
div#content {
padding:10px;
}
</style>