1. 教你如何使你的網站整體內容居中

      2010-11-17

      body {

      text-align:center; //在body標簽中設置該屬性給IE6認識只用

      }

      #wrapper {

      text-align:left; //在標準瀏覽器中,先須將文章的內容居左顯示

      margin:0 auto; //然后使用margin屬性將網站整體內容居中

      }