Question about backgrounds

  • Thread starter Thread starter Kim
  • Start date Start date
K

Kim

I want to add a background picture to a table, but I don't want it tiled - I
just want one single image. Is there any way to do this?

TIA
 
Hi Kim,
add some CSS to the head of your page like this
<style type="text/css">
#yourTable{
background: #fff url(YourImage.gif) no-repeat;
}
</style>
and then make the table like this
<table id="yourDiv".....
 
I kind of follow you a bit Jon, but I am not very html literate (just
learning it). Any easier suggestions?
 
You will find the same options by using Table Properties and selecting the Style Button
Then select Format - Border - Shading (Patterns)
Select your image in background picture and in the Repeat dropdown, select No-repeat

--




|I kind of follow you a bit Jon, but I am not very html literate (just
| learning it). Any easier suggestions?
|
|
| | > Hi Kim,
| > add some CSS to the head of your page like this
| > <style type="text/css">
| > #yourTable{
| > background: #fff url(YourImage.gif) no-repeat;
| > }
| > </style>
| > and then make the table like this
| > <table id="yourDiv".....
| >
| > --
| > Cheers,
| > Jon
| > Microsoft MVP
| >
| > | > >I want to add a background picture to a table, but I don't want it
| tiled -
| > >I
| > > just want one single image. Is there any way to do this?
| > >
| > > TIA
| > >
| > >
| >
| >
|
|
 
Back
Top