CSS属性让整体布局的居中以及让网页的背景居中的方法-成都创新互联网站建设

关于创新互联

多方位宣传企业产品与服务 突出企业形象

公司简介 公司的服务 荣誉资质 新闻动态 联系我们

CSS属性让整体布局的居中以及让网页的背景居中的方法

本篇内容主要讲解“CSS属性让整体布局的居中以及让网页的背景居中的方法”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“CSS属性让整体布局的居中以及让网页的背景居中的方法”吧!

创新互联公司是一家专业提供祁阳企业网站建设,专注与成都网站建设、成都网站设计HTML5、小程序制作等业务。10年已为祁阳众多企业、政府机构等服务。创新互联专业网站设计公司优惠进行中。

DIV+CSS布局居中问题

在DIV+CSS布局的页面里,从布局内容到页面里文章文字居中都是非常重要的,而CSS来设置居中也是非常简单的。

1、首先介绍使用CSS属性让整体布局的居中:

设置页面父级居中,那整个页面的父级是什么呢?我们可以想象整个页面的内容是由和这两个包含,那根据较近父级我们就设置body的CSS来实现居中问题,可以向在内容里居中有text-aligh:center;而这个元素在IE下有用,经过试验在火狐等浏览器下只设置text-aligh:center;居中是无法让布局居中,那我们还需要设置个“margin:0auto;”这个是什么意思呢,意思是内容上下为0距离,而左右为“auto”自动,这样就可以设置实现网页布局居中具体CSS的居中代码为:

body{text-aligh:center;margin:0auto;}但是即使这样也会出现问题,因为你没有设置布局有多宽“width”,一旦你内容布局中在最外层CSS控制中,设置了float:属性,那布局将会向你设置的float:方向靠,解决方法,除了设置body的居中的CSS属性外,还需在布局设置最外层div也居中,而且定义宽度是多少,假如网页宽度为700px,最外层CSS样式为的class="weicheng",那设置应该这样“.weicheng{margin:0auto;width:700px;}”即可。完整实例为(可将代码拷贝新建html文件浏览观看效果):

以下为引用的内容:

    www.divCSS5.com的CSSdiv的布局居中实例title> <styletypestyletype="text/CSS"> <!--  body{text-align:center;margin:0auto;}   .waicheng{color:#0066CC;margin:5pxauto;width:700px;height:200px;  border:1pxsolid#000000;}  --> style> head> <body> <divclassdivclass="waicheng">我是CSS中的居中的实验;我的布局外层有一个边为1px黑色边,   我宽700px,高为200px,设置了与顶部内容距离为5PXdiv> body> html></pre><p><strong>DIV+CSS布局居中实例浏览</strong></p><p><strong>2、介绍使用CSS属性让网页的背景居中:</strong></p><p>这里居中就包括了左右居中与上下居中,居中代码如下:<br/>body{BACKGROUND:#FFFurl(http://www.divCSS5.com/img/CSS-logo.gif)no-repeatcenter;}//这段话意思就是让CSS-logo.gif这个图片设置背景不重复(no-repeat),并将居中(center)这个居中是左右居中,而垂直不需要设置,自动会居中。</p><p><strong>3、CSS让介绍文字、图片内容左右上下居中方法教程:</strong></p><p>我们知道左右就中好办,直接用text-align:center;即可让文字与图片内容居中,但是垂直呢,假如我们在高度为120px的高度下垂直居中,图片居中是vertical-align:middle;CSS属性,文字居中就要靠设置行高方法居中文字内容,这里我们设置为120px的高度这需要设置个line-height:120px;这样就通过CSS属性类样式来实现文字与图片的上下左右居中。</p><p>整个网站居中的代码如下:</p><p>以下为引用的内容:</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> <metahttp-equivmetahttp-equiv="Content-Type"content="text/html;charset=gb2312"/> <title>www.divCSS5.com的CSSdiv的完整居中实例title> <styletypestyletype="text/CSS"> <!--  body{text-align:center;margin:0auto;background:url(http://www.divCSS5.com/img/CSS-logo.gif)no-repeatcenter;}  .waicheng{color:#0066CC;margin:5pxauto;width:700px;height:120px;  line-height:120px;border:1pxsolid#000000;}  .waichengimg{vertical-align:middle;}  --> style> head> <body> <divclassdivclass="waicheng">我是CSS中的居中的完整居中实例;  我的布局外层有一个边为1px   <imgsrcimgsrc="/upload/otherpic60/486843.gif" alt="图片内容居中"/>div> body> html></pre><p>到此,相信大家对“CSS属性让整体布局的居中以及让网页的背景居中的方法”有了更深的了解,不妨来实际操作一番吧!这里是创新互联网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!</p>            
            
                        <br>
            分享名称:CSS属性让整体布局的居中以及让网页的背景居中的方法            <br>
            当前路径:<a href="http://kswsj.cn/article/jcsecc.html">http://kswsj.cn/article/jcsecc.html</a>
        </div>
    </div>
    <div class="other">
        <h3>其他资讯</h3>
        <ul>
            <li>
                    <a href="/article/dccidgi.html">go语言中最酷的东西 go语言干嘛的</a>
                </li><li>
                    <a href="/article/dccidho.html">域名怎么改名字 域名怎么更换ip</a>
                </li><li>
                    <a href="/article/dccidid.html">c语言数组做函数 c语言 数组作为函数参数怎么写</a>
                </li><li>
                    <a href="/article/dccicoi.html">多个路由器如何连接 多个路由器如何连接成一个网络</a>
                </li><li>
                    <a href="/article/dccidhs.html">制造类与sap类似系统的简单介绍</a>
                </li>        </ul>
    </div>
</div>
<div class="line"></div>
<!--底部-->
<footer id="5">
    <div class="foot1 container">
        <div class="list">
            <div class="item">
                <a href="javascript:;">
                    <span class="ico1"><i class="iconfont"></i><img src="/Public/Home/img/ewm.png" alt=""></span>
                    <strong>关注我们</strong>
                </a>
            </div>
            <div class="item">
                <a href="" target="_blank">
                    <span><i class="iconfont"></i></span>
                    <strong>索要报价</strong>
                </a>
            </div>
            <div class="item">
                <a href="" target="_blank">
                    <span><i class="iconfont"></i></span>
                    <strong>我要咨询</strong>
                </a>
            </div>
            <div class="item">
                <a href="" target="_blank">
                    <span><i class="iconfont"></i></span>
                    <strong>找到我们</strong>
                </a>
            </div>
            <div class="item">
                <a href="" target="_blank">
                    <span><i class="iconfont"></i></span>
                    <strong>投诉建议</strong>
                </a>
            </div>
        </div>
        <div class="tel">
            <dl>
                <tel><a href="tel:400-028-6601" target="_blank">400-028-6601</a></tel><br>
                <span>也许您需要专业的服务,欢迎来电咨询</span>
            </dl>
            <dl>
                <tel><a href="tel:18980820575" target="_blank">18980820575</a></tel><br>
                <span>您的需求,是我们前进的动力</span>
            </dl>
        </div>
    </div>
    <div class="friend">
        <div class="container">
            <span class="tit">友情链接:</span>
            <div class="inner">
                <a href="https://www.cdcxhl.com/tuoguan/dianxin/" target="_blank">绵阳服务器托管</a><a href="https://www.cdcxhl.com/hangyead/" target="_blank">1元广告</a><a href="https://www.cdcxhl.com/xiaochengx.html" target="_blank">成都微信小程序开发</a><a href="https://www.cdcxhl.com/xiaochengx.html" target="_blank">成都小程序开发公司</a><a href="https://www.cdcxhl.com/shop.html" target="_blank">商城网站开发</a><a href="https://www.cdcxhl.com/xiaochengx.html" target="_blank">小程序开发公司</a><a href="https://www.cdcxhl.com/douyin/" target="_blank">抖音代运营</a><a href="https://www.cdcxhl.com/google.html" target="_blank">谷歌推广公司</a><a href="https://www.cdcxhl.com/shop.html" target="_blank">成都商城网站建设</a><a href="https://www.cdcxhl.com/app.html" target="_blank">app软件开发</a><a href="https://www.cdcxhl.com/link/" target="_blank">买卖链接</a><a href="https://www.cdcxhl.com/pinpai.html" target="_blank">品牌网站建设公司</a><a href="https://www.cdcxhl.com/ruanwen/" target="_blank">软文发稿投放</a><a href="https://www.cdcxhl.com/tuoguan/yaan/" target="_blank">雅安托管服务器</a><a href="https://www.cdcxhl.com/" target="_blank">成都网站制作</a><a href="https://www.cdcxhl.com/link/" target="_blank">买链接</a><a href="https://www.cdcxhl.com/sosuo.html" target="_blank">搜索引擎优化</a><a href="https://www.cdcxhl.com/cloud/" target="_blank">成都云服务器租用</a>            </div>
        </div>
    </div>
    <div class="foot">
        <div class="container">
            <div class="footNav">
                <h3>网站建设</h3>
                <a href="http://www.cdweb.net/" target="_blank">自适应网站建设</a><a href="http://www.scgulin.cn/" target="_blank">古蔺网站建设</a><a href="http://www.33260.cn/" target="_blank">成都定制网站建设</a>            </div>
            <div class="footNav">
                <h3>服务器托管</h3>
                <a href="https://www.cdcxhl.com/idc/yldx.html" target="_blank">义龙电信机房</a><a href="http://www.cdxwcx.cn/tuoguan/mianyang.html" target="_blank">绵阳服务器托管</a><a href="https://www.xwcx.net/tgxq/cdghjf.html" target="_blank">成都光华机房</a>            </div>
            <div class="footNav">
                <h3>网站制作</h3>
                <a href="http://seo.cdkjz.cn/wangzhan/" target="_blank">网站制作公司</a><a href="http://www.cdxwcx.cn/bj/" target="_blank">网站制作价格</a><a href="http://www.wjwzjz.com/" target="_blank">温江网站制作</a>            </div>
            <div class="footNav">
                <h3>企业服务</h3>
                <a href="https://www.cdcxhl.com/mianfei/jianzhan/" target="_blank">成都免费建站</a><a href="https://www.cdcxhl.com/service/400.html" target="_blank">400电话</a><a href="https://www.cdcxhl.com/shoulu/" target="_blank">分类目录</a>            </div>
            <div class="fr ecode">
                <div class="fl">
                    <img src="/Public/Home/img/ewm.jpg">
                    <p>关注企业微信</p>
                </div>
                <div class="fr slogan">
                    <p class="icon">
                        <a class="ph" href=""><i class="iconfont"></i></a>
                        <a class="qq" href="tencent://message/?uin=1683211881&Site=&Menu=yes"><i class="iconfont"></i></a>
                    </p>
                    <p>
                        <i>想要找 </i> <a href="">小程序开发</a>、<a href="">APP开发</a>、
                        <a href="">营销型网站建设</a>、<a href="">网站建设</a>、
                        <i><a href="">网站定制开发</a></i> ,就选<a href="">创新互联</a>
                    </p>
                </div>
            </div>
        </div>
        <div class="bottom container">
            <p class="fl">
                版权所有:成都创新互联科技有限公司
                备案号:<a href="https://beian.miit.gov.cn/" target="_blank" rel="nofollow">蜀ICP备19037934号</a>
                服务热线:028-86922220
            </p>
            <p class="fr">
                <a href="https://www.cdxwcx.com/" target="_blank">成都网站建设</a>:
                <a href="https://www.cdcxhl.com/" target="_blank">创新互联</a>
            </p>
        </div>
    </div>
</footer>
<!--在线咨询-->
<div class="fot">
    <ul>
        <li>
            <a href="https://p.qiao.baidu.com/cps/mobileChat?siteId=11284691&userId=6256368&type=1&reqParam=%20{%22from%22:0,%22sessionid%22:%22%22,%22siteId%22:%2211284691%22,%22tid%22:%22-1%22,%22userId%22:%226256368%22,%22ttype%22:1,%22siteConfig%22:%20{%22eid%22:%226256368%22,%22queuing%22:%22%22,%22siteToken%22:%226ce441ff9e2d6bedbdfc2a4138de449e%22,%22userId%22:%226256368%22,%22isGray%22:%22false%22,%22wsUrl%22:%22wss://p.qiao.baidu.com/cps3/websocket%22,%22likeVersion%22:%22generic%22,%22siteId%22:%2211284691%22,%22online%22:%22true%22,%22webRoot%22:%22//p.qiao.baidu.com/cps3/%22,%22bid%22:%22160142915792139572%22,%22isSmallFlow%22:0,%22isPreonline%22:0,%22invited%22:0%20},%22config%22:%20{%22themeColor%22:%224d74fa%22%20}%20}&appId=&referer=&iswechat=0&expectWaiter=-1&openid=null&otherParam=null&telephone=null&speedLogId=null&eid=null&siteToken=6ce441ff9e2d6bedbdfc2a4138de449e" target="_blank">
                <img src="/Public/Home/img/fot1.png" alt="">
                <p>在线咨询</p>
            </a>
        </li>
        <li>
            <a href="tel:18980820575" target="_blank">
                <img src="/Public/Home/img/fot2.png" alt="">
                <p>拨打电话</p>
            </a>
        </li>
    </ul>
</div>
</body>
</html>
<script>
    $(".con 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>