css背景平铺

作者: 星空无痕 | 来源:发表于2022-12-03 19:48 被阅读0次

            在网页设计的过程中,有时候可能会要求背景图片平铺,因为这样会让整个网页看起来比较好看,图片平铺可以不用具体设置body宽度和高度大小,就可以直接将图片平铺整个页面,那么,如何让背景图片平铺呢?接下来本篇文章将给大家来介绍关于css让背景图片平铺的方法,有需要的朋友可以参考一下。

    我们首先来看一下css设置背景图片平铺方式。

        repeat:即默认方式,完全平铺背景;

        no-repeat:在X及Y轴方向均不平铺;

        repeat-x:横向平铺背景;

        repeat-y:纵向平铺背景。

    下面我们就来看一下css的这四种背景图片平铺的实现代码。

    css背景图片平铺之完全平铺背景的代码:

     <html>

     <head>

    <style type="text/css">

     #content {

    border:1px solid #000fff;

    height:500px;

     background-image:url(http://img12.3lian.com/gaoqing02/01/58/85.jpg);

     background-repeat: no-repeat;

    }

     </style>

    <div id="content">

     </div>

    </body>

     </html>

    css背景图片平铺之在X及Y轴方向均不平铺:

     <html>

    <head>

     <style type="text/css">

     #content {

    border:1px solid #000fff;

    height:500px;

     background-image:url(images/tu.jpg);

    background-repeat: no-repeat;

     }

     </style>

     <div id="content">

    </div>

     </body>

    </html>

    css背景图片平铺之横向平铺背景:

    背景图片现在只在X轴即横向进行了平铺操作,纵向并没有进行平铺

    <html>

     <head>

    <style type="text/css">

     #content {

     border:1px solid #000fff;

    height:500px;

    background-image:url(images/tu.jpg);

     background-repeat: repeat-x;

     }

    </style>

    <div id="content">

    </div>

    </body>

    </html>

    css背景图片平铺之纵向平铺背景:

    背景图片现在只在Y轴即横向进行了平铺操作,横向并没有进行平铺

     <html>

     <head>

     <style type="text/css">

    #content {

    border:1px solid #000fff;

     height:500px;

     background-image:url(images/tu.jpg);

     background-repeat: repeat-y;

    }

     </style>

    <div id="content">

     </div>

     </body>

    </html>

    相关文章

      网友评论

        本文标题:css背景平铺

        本文链接:https://www.haomeiwen.com/subject/nicmfdtx.html