Ezilon.com - Target Your Audience, be Seen in Your Region

quick table background question using css

You are viewing this site as a guest. Join our community to get your questions answered and share knowledge. Active members may advertise and ask for a website critique.

He has: 83 posts

Joined: Feb 2005

Here is some style code I have

.roundcorners, .roundcorners TD,
{
background-image: url('images/round_corner.gif');
color:white;
font-family: sans-serif;
font-weight:bold;
font-size: 8pt;
}

'

What do I use to make it so the image does not repeat in the TD?

He has: 83 posts

Joined: Feb 2005

Never mind I figured it out Smiling

.roundcorners, .roundcorners TD,
{
background-image: url('images/round_corner.gif');
background-repeat: no-repeat;
color:white;
font-family: sans-serif;
font-weight:bold;
font-size: 8pt;
}

'