Twitter Bootstrap Responsive Background-Image inside Div

后端 未结 9 1286
醉梦人生
醉梦人生 2020-12-13 03:15

How i can modify #bg image so it would be responsive, resizable and proportional in all browser?

HTML:

 
9条回答
  •  温柔的废话
    2020-12-13 04:00

    Don't use fixed:

    .myimage {
       background:url(admin-user-bg.png) no-repeat top center;
       background: transparent url("yourimage.png") no-repeat top center fixed;
       -webkit-background-size: cover;
       -moz-background-size: cover;
       -o-background-size: cover;
       background-size: 100%;
       height: 500px;
    }
    

提交回复
热议问题