将对象(图像)对齐到底部

时间:2013-09-12 04:06:07

标签: javascript html

我有一个带有index.html的网页,其中包含以下内容:

<img class="thumb" onclick="openPhoto(1);" src="img/images/campaign/1.jpg" width="710" height="533" alt="img"/>

我需要做的是将图像对齐到屏幕的底部中心,因为当我打开它们时,它们实际上出现在屏幕的顶部中心。

1 个答案:

答案 0 :(得分:0)

只需使用css

.thumb
{
position:absolute;
bottom:0;
margin:auto;
width://your width accordingly;
}