iphone-template があり、画面イメージがあります。画面イメージを iphone テンプレート内に配置したい。CSS で position プロパティを使用してみましたが、画面イメージが div ではなく Web ページ全体の上部に表示されます。
<div class="span4" id="iphone-white">
<img class="iphone-white-img" src="img/iphone-wht-front.png" alt="" />
<div id="iphoneInside">
<img class="On imgSize" id="screen1" src="img/blue.jpg" alt="" />
</div>
</div>
CSS:
.iphone-white-img {
max-height: 720px;
max-width: 337px;
width: 100%;
margin-top: 15px;
position: relative;
}
.imgSize
{
max-height: 620px;
max-width: 287px;
width: 100%;
position: absolute;
top: 0;
}