Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS 3 Column Responsive Images – 33.333% not working in Codepen? Reply To: 3 Column Responsive Images – 33.333% not working in Codepen?

#157300
Paulie_D
Member

Am I missing something easy?

Yes….three times 33.3% does equal 100% but then you are adding in margins so the width will add up to more that 100% of the total width of the wrapper.

So…the images cannot be 33.3% wide but rather [ (100% – 100px) / 3 ]percent wide.

You could use calc for this but that will depend on what browser support you need.