我正在尝试创建要在 iphone 和 ipad 上显示的 html 文档。
这是一个简单的,但我的图像位置有一些问题,我不确定我应该使用相对位置还是绝对位置。
我想要的是页面中心的图像(屏幕顶部下方的一点点)和图像下方居中的 youtube iframe。
此代码适用于纵向但不适用于横向,因为如果页面图像将不在中心。
我还想在图像和 youtube 框架之间留出一些空间。这是我的实际代码。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<meta content="width=device-width;" initial-scale="1.0;" maximum-scale="2.0;" name="viewport" user-scalable="1;" />
<body bgcolor="#9fa2b5">
<div align="center">
<img style="position:relative; TOP:15px; LEFT:65px; "src="http://mysite.jpg" alt="image is missing" width=90 height=130>
<p>
</p>
<iframe width="320" height="180" src="http://www.youtube.com/embed" frameborder="1" ></iframe>
</div>
</body>
</html>