我有一个问题,#bgimage对齐窗口右侧
<header id="header" style="
">
<img id="bgimage" src="http://**.com/wp-content/uploads/2013/05/sparkler-test.png" style="position: absolute; float: right;display: block;">
<div id="site-title" style="position: absolute; clear: none;">
<a href="http://**.com/" rel="home">
<img src="http://**.com/wp-content/uploads/2013/02/LOGO-5.0.jpg" alt="" width="369" height="66" style="position: absolute;">
</a>
答案 0 :(得分:2)
您无法合并position:absolute
和float
。使用其中一个。如果您选择position:absolute
,请务必添加right:0
,并注意其背后的内容。
答案 1 :(得分:1)
这样的事情可能就是你想要的。
position: absolute; right:0; display:block;
您可能还想指定宽度,因为默认情况下,块元素将占用其容器的整个宽度。
另外,我注意到ID是bgimage,你试图设置背景吗?如果是这样,您可以使用CSS background
或background-image
属性执行此操作。