html - adjust size of background image without using css styles? -
i want decrease size of image, want background html page body. how can without using style tags?
<body style="width:200px; height:100px; background:url(vote.jpg) no-repeat center scroll"> this not working required because changing height , width of body, not image.
try table approach i.e inserting background in table
<table background="vote.jpg"> <tr> <td width="50" align="center">1</td> <td width="50" align="center">2</td> </tr> </table>
Comments
Post a Comment