Link to home
Start Free TrialLog in
Avatar of SimpleDude
SimpleDude

asked on

Extend background image (CSS)

Hi, Ive a table as follows:

      <table width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td height="600" style="background-image:url(images/background1.jpg); background-repeat:no-repeat;">&nbsp;</td>
        </tr>
      </table>

What I need to do is to extend the image when the browser's window size changes (as they do at http://bombbomb.com).

Any ideas?

Thanks!
Avatar of sentner
sentner
Flag of United States of America image

Are you asking for help with marketing emails?  Or did you include that link to a spamming company merely as an example of a web page?
Avatar of SimpleDude
SimpleDude

ASKER

???? No, I need to extend an image inside a <TR> and I dont know how to explain it better than with a working sample of what I need to do.
ASKER CERTIFIED SOLUTION
Avatar of sentner
sentner
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Awesome, I did it this way, taking your example, and it worked. Points are yours!

<td height="600" style="background-image:url(images/background1.jpg); background-repeat:no-repeat; background-size: cover; overflow: hidden; position: absolute; width: 100%;
">

Thanks!!