estoy tratando de colocar una imagen de fondo sin usar la propiedad background.. no se como colocar el texto sobre la imagen con css sera que alguien puede ayudarme... aca coloco mas o menos lo q deseo tener pero q como esta no funciona.. es q no se q mas hacer
ejem...
Código HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Imagen de fondo para imprimir</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <style type="text/css"> <!-- .imagen{ position:absolute; top: 10px; left: 50px; } --> </style> <script language="JavaScript"> function imprimirPagina() { if (window.print) window.print(); else alert("Lo siento, pero a tu navegador no se le puede ordenar imprimir" + " desde la web. Actualizate o hazlo desde los men?s"); } </script> </head> <body> <table> <tr> <td class="imagen"> <img src="EscudoVargas.jpg" class="imagen"> <br> QUiero que este texto me salga sobre la imegen <br> POrq si uso la imagen como background luego no se imprime <br> </td> </tr> <tr> <td> <input type="button" onclick="imprimirPagina();" class="boton" value="Imprimir"> </td> </tr> </table> </body> </html>