Tengo un div que tiene un texto dentro y un div con width 100%. En safari y firefox la anchura del div que tiene width 100% se ajusta a la anchura que tiene el texto, en cambio la anchura en Internet Explorer 6 ocupa todo lo posible.
¿Como puedo hacer que la anchura del div llamado 'rayita' mida lo mismo que el texto 'Este es el texto'?
Código HTML:
<div style="float:left; background:#99FF33; margin-bottom:4px; margin-top:4px"> <div id='rayita' style=" width:100%; float:left; background:#660099;overflow: hidden; height:4px; "></div> Este es el texto </div>