0

我有一张图片,我想将其放置在我的 HTML 页面的右边距附近,并将鼠标悬停在页面上的所有其他内容上。我还希望在调整窗口大小时图像保持在右边距附近。截至目前,图像在浏览器窗口内保持在固定位置,甚至在浏览器窗口扩大时出现在页面内容区域之外。我的页面内容在浏览器窗口中居中。下面是图片上的代码:

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center" valign="top">
<table width="900" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td background="../images/FWA_INV_head.jpg" valign="top" align="center">
<img src="images/bannerX.png" border="0" class="image" style="position:absolute;z-index:90;>

这是CSS:

.image {    
position:absolute;
opacity:.90;
-moz-opacity:.90;
filter:alpha(opacity=90);
}

请帮我看看我的方式的错误。

4

1 回答 1

0

定位绝对元素时,您的绝对位置位于最近的相对位置内。所以它绝对定位在相对位置之内。您的内联样式也没有关闭“

于 2013-06-13T22:28:51.430 回答