full screen responsive background image with bootstrap

后端 未结 1 1436
孤城傲影
孤城傲影 2020-12-13 22:18

I\'m new to twitters bootstrap. What want to know is the HTML mockup that i have to use for a full screen responsive background image with bootstrap?

certainly I\'m

1条回答
  •  一整个雨季
    2020-12-13 22:54

    Two options

    1. use img-responsive class if you are using tag.

      Responsive image
    2. if you are using css use this.

      .wrapper{background: url('/assets/64531/green_suburb.jpg') no-repeat   center center fixed;
      -webkit-background-size: cover;
      -moz-background-size: cover;
      -o-background-size: cover;
      background-size: cover;}
      

    0 讨论(0)
提交回复
热议问题