Código:
Lo que se quiere lograr, como se puede ver es un div de 1px de largo por 150px de ancho, y en IE6 lamentablemente se obtiene esto:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> </head> <body> <style> div.uno{ width: 150px; min-width: 150px; height: 1px; min-height: 1px; background: #cfdf44; } </style> <div class="uno"></div> </body> </html>
AYUDA.