Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can we integrate a picture as a background image for a table..

  <table>
  <tr>
  <td><textarea>Some data here.....</textarea>
  </td>
   <td></td>
  </tr>
  <tr>
  <td><textarea>Some data here.....</textarea>
  </td>
   <td></td>
  </tr>

Thanks..

share|improve this question

5 Answers

up vote 5 down vote accepted

Are you asking how to assign a background image to a table? Like for any other HTML element.

In CSS:

table.mytable
 { background-image: url(your_image.gif); }

In HTML:

<table class="mytable">

Reference:

background-image property at w3schools

see that page for the additional parameters background-repeat and background-position.

share|improve this answer
1  
It's worth noting that the background for the table-row will appear above the background of the table, and the table-cell background-image will appear above that of the table-row, so you might need/want to assign background-color: transparent; to tr, td. – David Thomas Apr 4 '10 at 15:21

Simply?

<table style="background-image: url(your_image.gif);">
...
</table>
share|improve this answer
table {
    background-image: url(/images/foo.png);
}
share|improve this answer

following on from Pekka's example.

table.mytable td
 { background-image: url(your_image.gif); }

would let you put a background image in each cell

if you applied a class attribute to the <td class="myClass"> you could then add a custom background to individual cells.

share|improve this answer

inline css like - style="background-image: url(your_image.gif);" - is not quite good.

in my opinion best way to put bg to table is ;

html : table > tr > td.wide

css : table tr td.wide{background:#ffffff url(/images/bg.png) repeat;}

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.