Search code examples
htmlcsstagscss-selectors

Backgroung image for a table


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..


Solution

  • 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.