HTML:
<div class="product">
<a href="#" class="thumb"><img src="img/thumb_md.png" alt="" /></a>
</div>
CSS:
.product .thumb {
position: relative;
display: table-cell;
vertical-align: bottom;
height: 130px;
}
..もちろん、IEを除いて、最新のブラウザでうまく動作します!
回避策はありますか?私が試した他の解決策は position:absolute; でした。下:0; ただし、z-index が何の効果もないように見える上記のドロップダウンに干渉します。
ありがとう!