中文字幕理论片,69视频免费在线观看,亚洲成人app,国产1级毛片,刘涛最大尺度戏视频,欧美亚洲美女视频,2021韩国美女仙女屋vip视频

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項超值服

開通VIP
div水平垂直居中的完美解決方案
來源:互聯(lián)網(wǎng) 作者:佚名 時間:07-08 02:08:42 
很多情況需要用到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)行
本站僅提供存儲服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點(diǎn)擊舉報。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
CSS網(wǎng)頁布局DIV水平居中的各種方法
CSS BUG
div嵌套引起的margin
css設(shè)置相對頁面絕對居中
完美實(shí)現(xiàn)跨域 Iframe 高度自適應(yīng)【Iframe 跨域高度自適應(yīng)解決方案】
Div CSS布局入門教程(二)
更多類似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長圖 關(guān)注 下載文章
綁定賬號成功
后續(xù)可登錄賬號暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服