Twitter Bootstrap Responsive Background-Image inside Div

后端 未结 9 1280
醉梦人生
醉梦人生 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:12

    Try this (apply to a class you image is in (not img itself), e.g.

    .myimage {
      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;
    }
    

提交回复
热议问题