05/12/2007, 05:30
|
| | Fecha de Ingreso: marzo-2007
Mensajes: 274
Antigüedad: 17 años, 10 meses Puntos: 2 | |
Re: formato 3 columnas heigth auto te dejo un script exo para 2 columnas, para 3 seria lo mismo solo k tendiras k añadir una mas
function AjustarAltosDiv(Izquierda,Derecha){
var colIzq = document.getElementById(Izquierda); // Ambos bloques los tengo identificados como colIzq y colDer respect.
var colDer = document.getElementById(Derecha);
hColIzq = colIzq.offsetHeight;
hColDer = colDer.offsetHeight;
//alert("izq: " + hColIzq + "; der: " + hColDer + ";");
/* //Esto funciona
if (hColIzq > hColDer) {
colDer.style.height = hColIzq;
} else {
colIzq.style.height = hColDer;
} */
//Aunque creo que sería más legible esta línea sólo
colDer.style.height = colIzq.style.height = Math.max( hColIzq, hColDer ) +"px";
}
AjustarAltosDiv('AMBuscarIzquierda','AMBuscarDerec ha'); |