Ver Mensaje Individual
  #7 (permalink)  
Antiguo 12/03/2006, 10:12
Jorolo
 
Fecha de Ingreso: octubre-2005
Mensajes: 536
Antigüedad: 18 años, 6 meses
Puntos: 1
Hola donpincho.

No se como lo hace google, yo lo haría así:
Código HTML:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="sp" lang="sp">
<head>
<meta http-equiv='Content-Type' content='text/xml; charset=UTF-8'/> 
<title>Texto con overflow</title> 
<style type="text/css"> 
.overflow { overflow: hidden; height: 3ex;}
table { width: 15em;} 
</style>
</head>
<body>
<table border="1">  
<tr>  
<td>Alerta</td>  
<td><p  class='overflow'>descripcion-1....&nbsp;descripcion-2....</p></td>  
<td>12 marzo</td>  
</tr> 
<tr>  
<td>Alerta</td>  
<td><p  class='overflow'>descripcion-1.... descripcion-2....</p></td>  
<td>12 marzo</td>  
</tr> 
</table> </body> </html> 
Espero que te sirva.