06/09/2008, 12:48
|
| | Fecha de Ingreso: julio-2008
Mensajes: 2
Antigüedad: 16 años, 6 meses Puntos: 0 | |
Respuesta: Imprimir imágenes de fondo yolo probe y no me funciona
este es mi cs sencillo
@media print, screen
{
.style1 {
color: brown;
background-color: yellow;;
}
}
luego cree un ejemplo de html sencillo
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/css" />
<title>Documento sin título</title>
<link rel="stylesheet" href="prueba3.css" type = "text/css" media="print, screen">
</head>
<body>
<table>
<td height="299" colspan="2" valign="top" class="style1">sopa</td>
</table>
</body>
</html>
y el background color cuand o voy vista preliminar de impresion no se ve... y cuando lo imprimo tampoco
que puede ser..?? |