RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
CSS中怎么实现DIV容器水平居中

这篇文章主要介绍“CSS中怎么实现DIV容器水平居中”,在日常操作中,相信很多人在CSS中怎么实现DIV容器水平居中问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”CSS中怎么实现DIV容器水平居中”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

专注于为中小企业提供成都网站制作、成都网站建设服务,电脑端+手机端+微信端的三站合一,更高效的管理,为中小企业革吉免费做网站提供优质的服务。我们立足成都,凝聚了一批互联网行业人才,有力地推动了上千企业的稳健成长,帮助中小企业通过网站建设实现规模扩充和转变。

DIV CSS教程:实现DIV容器水平居中的方法

在Web标准中的页面布局是使用DIV配合CSS来实现的。这其中最常用到的就是使整个页面水平居中的效果,这是在页面布局中基本,也是最应该首先掌握的知识。不过,还是经常会有人问到这个问题,在这里我简单总结一下使用DIV和CSS实现页面水平居中的方法:

一、margin:auto0与text-aligh:center

在现代浏览器(如InternetExplorer7、Firefox、Opera等)现代浏览器实现水平居中的方法很简单,只要设定到左右两侧的空白为自动即可。意即:

ExampleSourceCode

#wrap{margin:0auto;}

上面这段代码的意思是说使wrap这个DIV到左右两侧的距离自动设置,上下为0(可以为任意)。请在现代浏览器(如InternetExplorer7、Firefox、Opera等)中运行现在的代码:

SourceCodetoRun

   52CSS.comtitle> <metahttp-equivmetahttp-equiv="Content-Type"content="text/html;charset=UTF-8"/> <styletypestyletype="text/css"> DIV#wrap{   width:760px;   margin:0auto;   border:1pxsolid#333;   background-color:#ccc;  }  style> head>  <body> <DIVidDIVid="wrap"></pre><p>在Firefox等现代浏览器设定页面元素的水平居中,只要指定margin:0auto;即可</p><pre><pre> DIV#wrap{   width:760px;   margin:0auto;/*这里的0可以任意值*/   border:1pxsolid#ccc;   background-color:#999;  }  pre> DIV> body> html></pre><p>[可先修改部分代码再运行查看效果]</p><p>上面的效果很好。但是这在InternetExplorer6及改正的版本中是不起作用的,不过幸好它有自己的解决办法。在InternetExplorer中text-align属性是可继承的,即在父元素中设置后在子元素中就默认具有了该属性。因此我们可以在body标签中设置text-align属性值为center,这样页面内所有的元素都会自动居中,同时我们还要加一个hook把页面中的文字变成我们习惯的阅读方式——居左对齐。因此我们要如此来写代码:</p><p>ExampleSourceCode</p><pre>body{text-align:center;}  #wrap{text-align:left;}</pre><p>这样在InternetExplorer中我们就轻松实现了DIV的居中对齐。因此要在所有的浏览器中显示居中的效果,我们就可以这样写我们的代码:</p><p>ExampleSourceCode</p><pre>body{text-align:center;}  #wrap{text-align:left;  margin:0auto;  }</pre><p>SourceCodetoRun</p><pre><!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN"  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <htmlxmlnshtmlxmlns="http://www.w3.org/1999/xhtml"> <head> <title>52CSS.comtitle> <metahttp-equivmetahttp-equiv="Content-Type"content="text/html;charset=UTF-8"/> <styletypestyletype="text/css"> body{text-align:center;}  DIV#wrap{   text-align:left;   width:760px;   margin:0auto;   border:1pxsolid#333;   background-color:#ccc;  }  style> head>  <body> <DIVidDIVid="wrap"></pre><p>在Firefox等现代浏览器设定页面元素的水平居中,只要指定margin:0auto;即可</p><pre><pre> DIV#wrap{   width:760px;   margin:0auto;/*这里的0可以任意值*/   border:1pxsolid#ccc;   background-color:#999;  }</pre><p>在InternetExplorer6及以下的版本中我们还要做以下的设置:</p><pre> body{text-align:center;}    DIV#wrap{   text-align:left;   }  pre> DIV> body> html></pre><p>[可先修改部分代码再运行查看效果]</p><p>不过这里有一个前提,就是设置居中的元素要有固定的宽度,比如这里我们设定了为760像素。</p><p><strong>二、相对定位与负的边距</strong></p><p>对于wrap进行相对定位,然后使用负的边距抵消偏移量。这种方法比较简单还很容易实现:</p><p>ExampleSourceCode</p><pre>#wrap{  position:relative;  width:760px;  left:50%;  margin-left:-380px  }</pre><p>这段代码的意思是,设置wrap的定位是相对于其父元素body标签的,然后将其左边框移动到页面的正中间(也就是left:50%含意);***我们再从中间位置向左偏移回一半的距离来,这样就实现了水平居中了。</p><p>SourceCodetoRun</p><pre><!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN"  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <htmlxmlnshtmlxmlns="http://www.w3.org/1999/xhtml"> <head> <title>52CSS.comtitle> <metahttp-equivmetahttp-equiv="Content-Type"content="text/html;charset=UTF-8"/> <styletypestyletype="text/css"> DIV#wrap{   position:relative;   width:760px;   left:50%;   margin-left:-380px;   border:1pxsolid#333;   background-color:#ccc;  }  style> head>  <body> <DIVidDIVid="wrap"></pre><p>在所有浏览器中都有效的方法:</p><pre><pre> DIV#wrap{   position:relative;   width:760px;   left:50%;   margin-left:-380px;   border:1pxsolid#333;   background-color:#ccc;  }  pre> DIV> body> html></pre><p>[可先修改部分代码再运行查看效果]<br/>同样,在设定水平居中前你需要设定一个固定的宽度。</p><p>◆究竟选择哪个方法?</p><p>上面两个方法究竟选择哪种方法好呢?在***种方法中貌似使用了Hack技术,其实并没有,它是中规中矩的Web标准写法,完全符合规范,因此,两个种方法中完全可以随便的选取其中的任一种进行使用,他们不存在CSShack的问题。</p><p><strong>三、其它的居中方式</strong></p><p>上面所说的都是设定了具体宽度的情况下水平居中的实现。有时候我们想做一个弹性布局,或者当一个元素处于一个容器中时我们只想让它居中并不想设定一个具体的宽度。其实这并不是真正的居中布局,就像对一个100%长度的元素来说,你说它是居中对齐还是居左对齐呢?所以所有不高宽度的居中都不是真正的居中。这样的设计我们是使用的像元素的padding来设置的,实际中我们是改变了父元素的容器大小:<br/>如我们希望wrap元素长度随窗口而改变,同时又维持居中,我们就可以这样写:</p><p>ExampleSourceCode</p><pre>body{  padding:10px150px;  }</pre><p>这里,我们只需要保持父元素左右两侧的填充是相等的就可以了。</p><p>SourceCodetoRun</p><pre><!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN"  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <htmlxmlnshtmlxmlns="http://www.w3.org/1999/xhtml"> <head> <title>52CSS.comtitle> <metahttp-equivmetahttp-equiv="Content-Type"content="text/html;charset=UTF-8"/> <styletypestyletype="text/css"> body{   padding:10px150px;  }  DIV#wrap{   border:1pxsolid#333;   background-color:#ccc;  }  style> head>  <body> <DIVidDIVid="wrap"></pre><p>一种随浏览器窗口大小而改变的具有弹性的居中布局:</p><pre><pre> body{   padding:10px150px;  }   这里,我们只需要保持父元素左右两侧的填充是相等的就可以了。  pre> DIV> body> html></pre><p>到此,关于“CSS中怎么实现DIV容器水平居中”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注创新互联网站,小编会继续努力为大家带来更多实用的文章!</p>            
            
                                                            <br>
                                                分享文章:CSS中怎么实现DIV容器水平居中                                                <br>
                                                文章出自:<a href="http://lswzjz.com/article/ipcheh.html">http://lswzjz.com/article/ipcheh.html</a>
                                            </div>
                                            <div class="hot_new">
                                                <div class="page_title clearfix">
                                                    <h3>其他资讯</h3>
                                                </div>
                                                <div class="news_list clearfix">
                                                    <ul>
                                                        <li>
                                                                <a href="/article/dceogjs.html">go语言能做工控上位机 工控上位机用什么语言开发</a>
                                                            </li><li>
                                                                <a href="/article/dceogpi.html">路由器什么梗的简单介绍</a>
                                                            </li><li>
                                                                <a href="/article/dceogjp.html">腾讯云服务器下载太慢 腾讯云服务器下载太慢怎么回事</a>
                                                            </li><li>
                                                                <a href="/article/dceogps.html">php的数据库导出 php数据库导出源码</a>
                                                            </li><li>
                                                                <a href="/article/dceogid.html">c语言函数的开始标志 c语言界定函数开始与结束的符号</a>
                                                            </li>                                                    </ul>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>

<!-- 底部信息 -->
<div class="footer wow fadeInUp">
    <div class="rowFluid">
        <div class="span12">
            <div class="container">
                <div class="footer_content">
                    <div class="span4 col-xm-12">
                        <div class="footer_list">
                            <div class="span6">
                                <div class="bottom_logo"><img src="/Public/Home/images/ewm.jpg" alt="微信服务号二维码" /></div>
                            </div>
                            <div class="span6 col-xm-12">
                                <div class="quick_navigation">
                                    <div class="quick_navigation_title">快速导航</div>
                                    <ul>
                                       <li><a href="https://www.cdxwcx.com/city/wenjiang/" title="温江做网站" target="_blank">温江做网站</a></li><li><a href="https://www.xwcx.net/" title="成都服务器托管" target="_blank">成都服务器托管</a></li><li><a href="https://www.cdcxhl.com/zhizuo/chengdu.html" title="四川成都网站制作" target="_blank">四川成都网站制作</a></li><li><a href="http://chengdu.cdcxhl.cn/
" title="成都网站建设" target="_blank">成都网站建设</a></li><li><a href="http://www.cdkjz.cn/" title="成都网站制作" target="_blank">成都网站制作</a></li><li><a href="https://www.djxuejia.com/" title="雪茄烟" target="_blank">雪茄烟</a></li><li><a href="https://www.cdxwcx.com/jifang/deyang.html" title="高防机房" target="_blank">高防机房</a></li>                                    </ul>
                                </div>
                            </div>
                        </div>
                    </div>
                    <div class="span4 col-xm-6 col-xs-12">
                        <div class="footer_list">
                            <div class="footer_link">
                                <div class="footer_link_title">友情链接</div>
                                <ul id="frientLinks">
                                    <a href="https://www.cdcxhl.com/" title="网站制作" target="_blank">网站制作</a>
                                    <a href="https://www.cdcxhl.com/" title="网站建设" target="_blank">网站建设</a>
                                    <a href="https://www.cdxwcx.com/tuiguang/" title="成都网络推广" target="_blank">网络推广</a>
                                    <a href="http://seo.cdkjz.cn/" title="成都网站推广" target="_blank">网站推广</a>
                                    <a href="https://www.cdcxhl.com/xiaochengx.html" title="成都微信小程序开发" target="_blank">小程序开发</a>
                                    <a href="https://www.cdcxhl.com/menu.html" title="创新互联网站栏目导航" target="_blank">网站导航</a>
                                </ul>
                                <div class="footer_link_title">网站建设</div>
                                <ul id="frientLinks">
                                    <li><a href="/">乐山大橙子建站</a></li>
                                    <li><a href="https://www.cdcxhl.com/menu.html" title="创新互联网站栏目导航" target="_blank">网站导航</a></li>
                                </ul>
                            </div>
                        </div>
                    </div>
                    <div class="span4 col-xm-6 col-xs-12">
                        <div class="footer_list">
                            <div class="footer_cotact">
                                <div class="footer_cotact_title">联系方式</div>
                                <ul>
                                    <li><span class="footer_cotact_type">企业:</span><span class="footer_cotact_content">青羊区大橙子信息咨询工作室</span></li>
                                    <li><span class="footer_cotact_type">地址:</span><span class="footer_cotact_content">成都市青羊区太升南路288号</span></li>
                                    <li><span class="footer_cotact_type">电话:</span><span class="footer_cotact_content"><a href="tel:18980820575" class="call">18980820575</a></span></li>
                                    <li><span class="footer_cotact_type">网址:</span><span class="footer_cotact_content"><a href="/" title="乐山网站建设">www.lswzjz.com</a></span></li>
                                </ul>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <div class="copyright">
                <p>公司名称:青羊区大橙子信息咨询工作室   联系电话:18980820575</p>
                <p><a href="http://beian.miit.gov.cn" target="_blank" rel="nofollow">网站备案号:蜀ICP备2022028542号-13</a></p>
                <p>乐山大橙子建站 乐山网站建设 乐山网站设计 乐山网站制作 <a href="http://www.cdxwcx.cn/" target="_blank">成都做网站</a></p>
            </div>
        </div>
    </div>
</div>
</body>
</html>
<script>
    $(".technical_support_box_z_info_box img").each(function(){
        var src = $(this).attr("src");    //获取图片地址
        var str=new RegExp("http");
        var result=str.test(src);
        if(result==false){
            var url = "https://www.cdcxhl.com"+src;    //绝对路径
            $(this).attr("src",url);
        }
    });
    window.onload=function(){
        document.oncontextmenu=function(){
            return false;
        }
    }
</script>