I\'m using the Bootstrap 3 Framework and have some troubles with the \"img-responsive\" class in Firefox. I have a 4 column-Table with 15/50/10/25% layout. In the first colu
The answer from Bass
.img-responsive {
width:100%;
}
does work, but it also scales up other images.
What I have done instead is create another class as
.img-responsive-2 {
width: 100%;
}
and put it together with the original .img-responsive
so that I have the flexibility to use it only for images in tables.