如何对齐 MySpace 页面上的图像?
我想将图片放在我的 myspace 页面顶部,位于我的乐队个人资料上的广告上方。 我可以很好地放置一张图片,但是当我尝试将图片放在另一张图片之上时,它们只是相互重叠。
我想做一些类似这个的事情。
有什么建议可以帮助我解决这个问题吗?
我使用:
<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
我想要一张上面的图片,但每当我再次输入代码时,新图片就会位于旧图片之上。
I want to put pictures at the top of my myspace page above the ad on my band profile. I can put one picture up just fine, but when I try to put pictures on top of one another they just overlap each other.
I would like to do something like this.
Any tips for how I can fix this?
I used:
<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>
This is what I have so far:
http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid=446378267
I want a picture above that, but whenever I put the code in again the new picture just sits on top of the old picture.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您要复制的页面使用每个单元格中带有图像的表格布局:
仅显示第一行:
复制该页面需要一些时间;-)。
The page you want to copy uses a table layout with images in each cell:
Just to show the first rows:
It's going to take some time to copy that ;-).
这是因为您正在使用
position:absolute
,大概两者都使用,所以它们试图坐在彼此之上。 尝试制作第二个position:relative
。It's because you're using
position: absolute
, presumably for both, so they're trying to sit on top of each other. Try making the 2nd oneposition:relative
.