HTML Background Image resolution fix to the PC resolution?

Chris C

New member
Try something like this, although I try to avoid using HTML when CSS isn't allowed (which rarely happens nowadays).

<html>
<body>
<table width="100%" height="100%">
<tr>
<td>
<img src="myimage.jpg" width="100%" height="100%">
</td>
</tr>
</table>
</body>
</html>
 
Try something like this, although I try to avoid using HTML when CSS isn't allowed (which rarely happens nowadays).

<html>
<body>
<table width="100%" height="100%">
<tr>
<td>
<img src="myimage.jpg" width="100%" height="100%">
</td>
</tr>
</table>
</body>
</html>
 
Try something like this, although I try to avoid using HTML when CSS isn't allowed (which rarely happens nowadays).

<html>
<body>
<table width="100%" height="100%">
<tr>
<td>
<img src="myimage.jpg" width="100%" height="100%">
</td>
</tr>
</table>
</body>
</html>
 
I edited the image to the resolution of my PC, but some PC's have a bigger resolution and there will be more images instead of one... Is there a way to fix their resolution to the resolution of the user's PC?
 
Try something like this, although I try to avoid using HTML when CSS isn't allowed (which rarely happens nowadays).

<html>
<body>
<table width="100%" height="100%">
<tr>
<td>
<img src="myimage.jpg" width="100%" height="100%">
</td>
</tr>
</table>
</body>
</html>
 
Try something like this, although I try to avoid using HTML when CSS isn't allowed (which rarely happens nowadays).

<html>
<body>
<table width="100%" height="100%">
<tr>
<td>
<img src="myimage.jpg" width="100%" height="100%">
</td>
</tr>
</table>
</body>
</html>
 
Back
Top