Search code examples
cssimagecss-tables

Stretch Image for a table in asp.net


I have a table, and I am using an image as background.

Now my requirement is, if my table's height or width is bigger than that of image, I do not want the image to repeat (Current Situation).

Instead I would love to stretch my image. By the way using the table as a custom web-part in SharePoint 2010.

CSS used:

.style1
    {
        width: 600px;
        height: 366px;
        float: left;
        background-image: url('../../../_layouts/images/tableMSHU1.bmp');
    }

Solution

  • Use background-size attribute.

    background-size:600px 366px;