利用 padding 來實現和利用css的僞類 after 或者before 來撐開css
width 百分之幾 padding 百分之幾 同樣的寬度orm
具體代碼以下blog
.product-image { position: relative; display: inline-block; width: 100%; overflow: hidden; } .product-image:before { display: block; content: ' '; padding-bottom: 100%; width: 1PX; } .product-image img { position: absolute; top: 50%; left: 0; width: 100%; transform: translateY(-50%); }