estoy intentado expandir dos div para que sean iguales pero solo consigo que se estire uno y que se iguales
como se puede hacer.
Código:
<!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/html; charset=iso-8859-1" /> <title>Documento sin título</title> <style type="text/css"> #contenedor { overflow: hidden; width:600px; height:100%; } #columna1 { float:right; width:250px; height:100%; border:red solid 1px; /* padding-bottom: 30px; margin-bottom: -10px;*/ } #columna2 { width:250px; border:blue solid 1px; height:100%; /* padding-bottom: 49px; margin-bottom: 50px;*/ } </style> </head> <body> <div id="contenedor"> <div id="columna1">trwe trwe e<br /> frfrfrfr<br /> frfrfr<br /> Frfrfr<br /> frfrfr<br /> frfr<br /> frfr</div> <div id="columna2">gvsdg sdfg lrfr<br /> frfrfr<br /> frfrfrfrf<br /> rfrfrfr<br /> Frfrfr<br /> frfr</div> </div> </body> </html>