No img-responsive in Bootstrap 4

后端 未结 7 1073
北恋
北恋 2020-12-28 12:47

I just downloaded the source code for Bootstrap 4 alpha 2 and can\'t find the class img-responsive in it. It exists in Bootstrap 3 source code and I can find it

7条回答
  •  情话喂你
    2020-12-28 13:36

    Bootstrap 3: .img-responsive

    Bootstrap 4: .img-fluid

    As in Bootstrap 4 Images:

    Images in Bootstrap 4 are made responsive with .img-fluid. max-width: 100%; and height: auto; are applied to the image so that it scales with the parent element.

     //This will make your image responsive
    

提交回复
热议问题