how to stop image responsive in twitter-bootstrap?

后端 未结 5 1658
梦谈多话
梦谈多话 2021-02-14 10:37

I\'m using twitter bootstrap to making responsive layout.It works like awesome.

It makes images too responsive. I need some images only need to be fixed width and height

5条回答
  •  春和景丽
    2021-02-14 11:28

    To add to the answer posted by @atype I would put as follows:

    /* html */
    An image
    
    /* css * /
    img.fixed-size { height: auto !important; width: auto !important; }
    

提交回复
热议问题