1

次のような index.html を含む Web ページがあります。

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

私がする必要があるのは、画像を画面の中央下部に配置することです。画像を開くと、実際には画面の中央上部に表示されるためです。

4

1 に答える 1

0

cssを使うだけ

.thumb
{
position:absolute;
bottom:0;
margin:auto;
width://your width accordingly;
}
于 2013-09-12T04:16:10.560 に答える