Using Bootstrap3 I am trying to display a row of round circular images. Although the original images are:
- not round
- maybe of varying dimentsion
- should all be rendered the same size
- be responsive
I have a basic layout working at full screenbut when I re-size my browser the responsive image does not retain the circular shape (it become elongated):
http://www.bootply.com/IPiaTmbF1J
I am using the img-round class to make the image cicular, but I think the problem is related to the following style, but without it the circular images are not the same size:
.dabRes .img-responsive {
width: 200px;
height: 200px;
border: 2px solid #bfbfbf;
}
Is what I am trying to achieve possible?
Thanks,
Alan.