我的最后一个问题不是很清楚,我会再试一次。
在我的 Tumblr 博客 (http://anti-standard.tumblr.com) 上,您可以看到一张贴在页面左侧的图片(图片上写着“ANTI STANDARD”)。但是,我希望将图像粘贴到页面的右侧。我怎样才能做到这一点?我有以下 CSS 代码:
.image-container1 {
width:100%;
position:absolute;
float:right;
right:0;
clear:both;
}
.image-container2 {
background:url('http://avare.nl/tumblr/as.png') no-repeat fixed;
background-size:55px 500px;
height:500px;
width:55px;
}
以下 HTML 代码位于“body”标签的正下方:
<div class="image-container1">
<div class="image-container2">
</div>
</div>
我希望你们能帮助我解决这个问题。