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

Popular posts from this blog

java - Spring Data JPA: Why findOne(id) executing delete query internally? -

python - Mongodb How to add addtional information when aggregating? -

java - Incorrect order of records in M-M relationship in hibernate -