I have three images which are all different widths, but each the same height.
I want these images to be in a responsive row so that the
This could work - by using css table layout.
jsFiddle
body { margin: 0; } ul { list-style: none; padding: 0; margin: 0; display: table; border-collapse: collapse; width: 100%; } li { display: table-cell; } img { display: block; width: 100%; height: auto; }