Can I set two background images on the same element with CSS?

Posted by pv2008 on Stack Overflow See other posts from Stack Overflow or by pv2008
Published on 2009-05-18T23:55:50Z Indexed on 2010/05/29 2:12 UTC
Read the original article Hit count: 252

Filed under:
|

Sample HTML code:

<table>
<tr>
 <td class="a b">

Sample CSS file:

.a
{
  background-image:url(a.png);
}

.b
{
  background-image:url(b.png);
}

It seems like the "b" part is ignored.

Is there any way to inlclude both images in the same cell, even using other technique?

© Stack Overflow or respective owner

Related posts about html

Related posts about css