用CSS使DIV水平置中

來源:互聯網
上載者:User

一,用CSS使DIV層水平置中

對需要水平置中的DIV層添加以下屬性:
   margin-left: auto;
   margin-right: auto;

這樣在FF中已經置中了,可是在IE中看還是沒有置中!

問題並不在CSS而在XHTML網頁本身.

需要加上這樣的代碼才能使得上述設定有效果:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

如何使DIV置中

主要的樣式定義如下:

body { TEXT-ALIGN: center; }

#center { MARGIN-RIGHT: auto; MARGIN-LEFT: auto; }

說明:

首先在父級元素定義TEXT-ALIGN: center;這個的意思就是在父級元素內的內容置中;對於IE這樣設定就已經可以了。但在mozilla中不能置中。解決辦法就是在子項目定義時候設定時再加上“MARGIN-RIGHT: auto;MARGIN-LEFT: auto; ”

需要說明的是,如果你想用這個方法使整個頁面要置中,建議不要套在一個DIV裡,你可以依次拆出多個div,只

要在每個拆出的div裡定義MARGIN-RIGHT: auto;MARGIN-LEFT: auto; 就可以了。

如何使圖片在DIV 中垂直置中

用背景的方法。舉例:

body{ BACKGROUND: url(http://www.w3cn.org/style/001/logo_w ... )#FFFno-repeatcenter; }

關鍵就是最後的center,這個參數定義圖片的位置。還可以寫成“top left”(左上方)或者"bottom right"等,也可以直接寫數值"50 30"

如何使文本在DIV中垂直置中

果是文字,便不能用背景方法,可以用增高行距的辦法變通實現垂直置中,完整代碼如下:

<html>

<head>

<style>

body{ TEXT-ALIGN: center; }

#center{ MARGIN-RIGHT: auto;

MARGIN-LEFT: auto;

height:200px;

background:#F00;

width:400px;

vertical-align:middle;

line-height:200px;

}

</style>

</head>

<body>

<div id="center"><p>test content</p></div>

</body>

</html>

說明:

vertical-align:middle;表示行內垂直置中,我們將行距增加到和整個DIV一樣高line-height:200px;然後插入文字,就垂直置中了。

CSS+DIV控制頁面中元素垂直置中代碼 全域和地區垂直置中

<style type="text/css" media=screen>

body

{

text-align: center;

}

#a

{

width: 200px;

height: 400px;

background: #000;

}

#b

{

margin-top: expression((a.clientHeight-50)/2);

width: 50px;

height: 50px;

background: #FFF;

}

#c

{

position: absolute;

left: expression((body.clientWidth-50)/2);

top: expression((body.clientHeight-50)/2);

width: 50px;

height: 50px;

background: #F00;

}

</style>

<div id="a">

<div id="b"></div>

</div>

<div id="c"></div>

另一方法:

<div style="background:blue;position:absolute;left:expression((body.clientWidth-50)/2);top:expression((body.clientHeight-50)/2);width:50;height:50"></div>

***************************************

二,用JS使層置中

把如下代碼加入<body>地區中

<DIV id=L1 style="HEIGHT: 107px; LEFT: 341px; POSITION: absolute; TOP: 585px; WIDTH: 205px; Z-INDEX: 1">

<TABLE bgColor=#ffffff border=1 borderColorDark=#ffffff borderColorLight=#000000 cellPadding=0 cellSpacing=0 width="100%">

<TR>

<TD height=1 width=178>□::BEST4U論壇::</TD>

<TD align=middle onclick="L1.style.visibility='hidden'"

style="CURSOR: hand" width=21>х</TD></TR>

<TR vAlign=top>

<TD colSpan=2

height=91>歡迎光臨本站!<BR><BR>本站網域名稱:<BR>http://webform.cn

</TD></TR></TABLE></DIV>

<SCRIPT LANGUAGE="JavaScript">

function moveit() //這個函數用於把層放到瀏覽器中間

{

L1.style.left=((document.body.offsetWidth-parseFloat (L1.style.width))/2)+document.body.scrollLeft;

L1.style.top=((document.body.offsetHeight-parseFloat (L1.style.height))/2)+document.body.scrollTop;

}

window.onload=moveit; //網面開啟時時執行moveit()

window.onresize=moveit; //當調整瀏覽器大小時執行moveit()

window.onscroll=moveit; //當拉動捲軸時執行moveit()

</SCRIPT>

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.