问答详情
源自:7-8 切换背景图像综合练习题

设置背景图片全屏显示,并且居中

  img.bg {
            min-height: 100%;
            min-width: 1024px;
            width: 100%;
            height: auto  !important;
            height: 100%;
            position: fixed;
            top: 0;
            left: 50%;
            z-index:1;
              -webkit-transform: translateX(-50%);
              -moz-transform: translateX(-50%);
              -o-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
            }

不懂,为什么这么写??

提问者:啦啦啦123 2015-01-27 14:27

个回答

  • chuanwei
    2015-01-27 16:34:21
    已采纳

    img.bg {
                min-height: 100%;
                min-width: 1024px;
                width: 100%;
                height: auto  !important;
                height: 100%;
                position: fixed;
                top: 0;
                left: 0;
                z-index:1;
                }

    这样写才对,作者的好像不太对

  • 慕工程2957023
    2016-11-20 14:00:12

    作者这样写应该是为了当浏览器窗口缩小时,背景图片依然居中

  • Jouko
    2015-04-28 14:05:46

    长见识了 厉害厉害