樓上正解,你要讓a標(biāo)簽居中,就要在包裹它的塊級元素上用 text-align:center;,在a標(biāo)簽上用是沒有用的,所以你
創(chuàng)新互聯(lián)主要從事網(wǎng)站設(shè)計、網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)錦屏,10年網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):18982081108
#footerbox_two{ text-align:center;}這樣是對的,如果沒有作用,看看優(yōu)先級問題,有沒有被別的樣式覆蓋,或者你再加一級
#footerbox_two p{ text-align:center;}
style
.footer{background:#4D4D4D;?padding:0px;?margin:0?auto;?width:100%;?height:40px;}
.foot_box{padding:0px;?margin:0?auto;?width:980px;?height:40px;font-size:14px;?line-height:40px;?color:#fff;}
.box_left{?padding:0px;?margin:0;?float:left;?width:500px;?height:40px;}
.box_left?a{?color:#fff;?}
.box_right{?padding:0px;?margin:0;?float:right;?width:400px;}
/style
div?class="footer"
div?class="foot_box"
div?class="box_left"
a?href="#"?target="_blank"關(guān)于我們/a?|?
a?href="#"?target="_blank"關(guān)于我們/a?|?
a?href="#"?target="_blank"關(guān)于我們/a?|?
a?href="#"?target="_blank"關(guān)于我們/a?
/div
div?class="box_right"版權(quán)所有……/div
/div
/div
頁腳單獨一個DIV.然后給定寬度和白色框?qū)挾纫粯?然后css加上: margin:0 auto.居中.
比如css文件里設(shè)置了
.top{
position:absolute;
top:0px;
width:940px;
height:40px;
background-color:#c0c0c0;
}
.bottom{
position:absolute;
bottom:0px;
width:940px;
height:40px;
background-color:#0c0c0c;
}
呢么在頁面代碼中首先在head引用一下該css,比如名字為demo.css
link?href="demo.css"?rel="stylesheet"?type="text/css"?/!--假設(shè)頁面和css文件在一個目錄--
然后在頁面的top使用div
div?class="top"Something/div
在頁面的bottom使用div
div?class="bottom"Something/div
在WebBrowser-Web瀏覽器上面,進(jìn)入"文件"中的“打印設(shè)置” (IE7叫"頁面設(shè)置“),把在Header和Footer欄中的字符刪掉就可以了(如Header欄中的wbPage p of P)。
打印網(wǎng)頁時需設(shè)置自定義的頁眉頁腳,CSS沒法直接設(shè)定;但可以利用table的特性,間接實現(xiàn)類似的效果: