美文网首页
前端-第七天-学习

前端-第七天-学习

作者: 看三小 | 来源:发表于2018-10-23 17:01 被阅读4次

    雪碧图

    1. 相比多个图片,占用存储空间小。
    2. 浏览器图片请求次数减少(仅一次)。

    背景色

    • 使用background-color 属性设置列表元素。

    背景图像

    • 使用background-image 属性。

    body {background-image: url(img/07.gif);}

    背景是否重复(默认重复:repeat)

    body
    {
    background-image: url(img/07.gif);
    background-repeat: repeat-y;
    } (垂直重复)

    • no-repeat(不重复) repeat-x(水平重复)

    背景定位

    body
    {
    background-image:url(img/07.gif');
    background-repeat:no-repeat;
    background-position:center;
    }

    背景关联

    • 使用background-attachment 属性。

    body
    {
    background-image:url(img/07.gif);
    background-repeat:no-repeat;
    background-attachment:fixed
    }

    相关文章

      网友评论

          本文标题:前端-第七天-学习

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