我想在我的乐队个人资料上的广告上方的myspace页面顶部放置图片.我可以放一张照片很好,但是当我尝试将一张照片放在另一张上面时,它们只是彼此重叠.
我想做类似this的事情.
我用了:
<style type="text/css">
body {
background-position:top center;margin-top: H;
}
div.topbanner {
top: 150%;
left: 49%;
margin-left: -600px;
width: 100%;
height: 800px;
position: absolute;
}
</style>
<div class="topbanner">
<IMG SRC="http://www.victoryhardcore.com/myspaceimages/atdr/homesick/adtr_myspace_top_26.jpg" border="0">
</div>
这是我到目前为止的内容:
http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid=446378267
最佳答案
您要复制的页面使用表格布局,每个单元格中都有图像:
仅显示第一行:
<table width="1260" height="1414" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="5" rowspan="2">
<img src="image01.jpg" width="481" height="107" alt="">
</td>
<td colspan="6">
<img src="image02.jpg" width="290" height="47" alt="">
</td>
<td colspan="5" rowspan="2">
<img src="image03.jpg" width="489" height="107" alt="">
</td>
</tr>
<tr>
<td colspan="6">
</td>
</tr>
<tr>
<td>
<img src="image05.jpg" width="239" height="428" alt="">
</td>
<td colspan="14">
</td>
<td>
<img src="image07.jpg" width="244" height="428" alt="">
</td>
</tr>
</table>
复制该副本将需要一些时间;-).
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。