
#id_wrapper {
    /*设定高度最小为100%, 如果內容区块很多, 可以长大！*/
    min-height: 100%;
    position: relative; /*位置relative, 作为footer位置的参考*/
    text-align: center;
}

#footer
{
 
    height: 40px; /*设定footer高度*/
    position: absolute; /*设定footer绝对位置在底部*/
    bottom: 0;
    width: 100%; /*展开footer宽度*/
    line-height: 40px;
 
}
#footer p{
 text-align:center;
 padding:0px;
 margin:0px;
 
} 

#id_wrapper  p {
  display:inline;
}
