On 10 Nov, 00:33, Meander365 <[email protected]> wrote:
> Here's the problem:
>
> I've an element that has a transparent png as its background image.
>
> I also have a standard image included on the page.
>
> I want to place the standard image behind the element that has the
> transparent png as its background image.
>
> Can this be done?
>
> I've tried using z-indexing and opacity and although I can see the
> standard its not having the desired effect.
With e.g.:
<img src="..." width="200" height="100" />
<div class="last">...</div>
Try negative margins on det last element, i.e.:
.last { position: relative; margin-top: -100px; margin-bottom: -100px;
height: 100px }
Something like that should work in ie6 too.
--
--
You received this because you are subscribed to the "Design the Web with CSS"
at Google groups.
To post: [email protected]
To unsubscribe: [email protected]