很多情況需要用到div的居中,下面是腳本之家編輯參考一些網(wǎng)站整理的一篇文章。希望對朋友們有所幫助。
讓div居中對齊
使用margin-left:auto;margin-right:auto; 可以讓你的div居中對齊。
.style{margin-left:auto;margin-right:auto;}
縮寫形式為:
.style{margin:0 auto;}
數(shù)字0 表示上下邊距是0??梢园凑招枰O(shè)置成不同的值。
查看下面的例子:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="zh-cn">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>水平垂直居中div演示效果</title>
<style type="text/css">
.align-center{
position:fixed;left:50%;top:50%;margin-left:width/2;margin-top:height/2;
}
</style>
</head>
<body>
<div class="align-center">水平垂直居中div演示效果</div>
</body>
</html>
提示:您可以先修改部分代碼再運(yùn)行
注意,需要加上上面的那句
才能生效,要是不想要這句的話,也可以給body加一個屬性:
body{text-align:center;}
另外,讓div內(nèi)的內(nèi)容(包括文字及圖片)居中的代碼是: text-align:center;
div居中的完美解決方案! (水平垂直居中)
1,關(guān)于居中使用css為:position:fixed;left:50%;top:50%;margin-left:width/2;margin-top:height/2;
對于ie6,只能把position:改成absolute;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="zh-cn">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>水平垂直居中div演示效果</title>
<style type="text/css">
.align-center{
position:fixed;left:50%;top:50%;margin-left:width/2;margin-top:height/2;
}
</style>
</head>
<body>
<div class="align-center">水平垂直居中div演示效果</div>
</body>
</html>
提示:您可以先修改部分代碼再運(yùn)行