Ver Mensaje Individual
  #15 (permalink)  
Antiguo 04/12/2012, 15:58
Avatar de IsaBelM
IsaBelM
Colaborador
 
Fecha de Ingreso: junio-2008
Mensajes: 5.032
Antigüedad: 16 años, 6 meses
Puntos: 1012
Respuesta: Redimensionar tablas html

hay una diferencia entre general el selector entero únicamente por cambiar el valor de una propiedad
Cita:
<style>
table#uno{height: 500px;}
</style>
a cambiar el valor de la propiedad en línea
Cita:
<table border="1" id="uno" style="height: 500px;">

no es necesario usar el evento. como no está dentro de ninguna función, ejecutará allí donde lo pongamos
Cita:
<table id="uno" border="1">
<script type="text/javascript">
//<![CDATA[
if(navigator.userAgent.toLowerCase().indexOf('fire fox') > -1){
document.getElementById('uno').style.height = '500px';
}
//]]>
</script>
<tr><td>contenido</td></tr>
</table>
__________________
if(ViolenciaDeGénero) {alert('MUJER ASESINADA');}